1 Hướng dẫn sử dụng colorbox 20/4/2012, 10:12 pm
Founder
Admin
Bước 1: Display - Ganeral - Overall_header:
Tìm đoạn này:
Colorbox-min: 14.3Kb
Thêm vào cuối CSS:
Colorbox là một jQuery Plugins nên ta có thể dùng nó chung với các API của jQuery.
Cấu trúc để sử dụng colorbox như sau
Ví dụ 1:
Bạn có thể thấy trong ví dụ trên có sử dụng 2 key:value và không sử dụng callback.
Ví dụ 2:
Ví dụ 3:
Xem thêm ví dụ (Ctrl+U): http://colorpowered.com/colorbox/core/example5/index.html
Tìm đoạn này:
- Code:
<script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
Colorbox-min: 14.3Kb
- Code:
<script src="http://fmvi-group.googlecode.com/files/colorbox-min.js" type="text/javascript"></script>
- Code:
<script src="http://fmvi-group.googlecode.com/files/colorbox-packer.js" type="text/javascript"></script>
Thêm vào cuối CSS:
- Code:
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index: 999;overflow:hidden;}#cboxOverlay{position:fixed;width:100%;height:100%;background:#000;}#cboxMiddleLeft,#cboxBottomLeft{clear:left;}#cboxContent{position:relative;background:#fff;overflow:visible;}#cboxLoadedContent{overflow:auto;margin-bottom:5px;}#cboxTitle{position:absolute;bottom:-25px;left:0;text-align:center;width:100%;font-weight:700;color:#7C7C7C;margin:0;}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer;position:absolute;bottom:-29px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/contro11.png) no-repeat 0 0;width:23px;height:23px;text-indent:-9999px;}.cboxPhoto{float:left;border:0;display:block;margin:auto;}.cboxIframe{width:100%;height:100%;display:block;border:0;}#cboxTopLeft{width:14px;height:14px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/contro11.png) no-repeat 0 0;}#cboxTopCenter{height:14px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/border10.png) repeat-x top left;}#cboxTopRight{width:14px;height:14px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/contro11.png) no-repeat -36px 0;}#cboxBottomLeft{width:14px;height:43px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/contro11.png) no-repeat 0 -32px;}#cboxBottomCenter{height:43px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/border10.png) repeat-x bottom left;}#cboxBottomRight{width:14px;height:43px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/contro11.png) no-repeat -36px -32px;}#cboxMiddleLeft{width:14px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/contro11.png) repeat-y -175px 0;}#cboxMiddleRight{width:14px;background:url(http://i20.servimg.com/u/f20/14/50/49/34/contro11.png) repeat-y -211px 0;}#cboxLoadingOverlay{background:url(http://i20.servimg.com/u/f20/14/50/49/34/loadin10.png) no-repeat center center;}#cboxLoadingGraphic{background:url(http://i20.servimg.com/u/f20/14/50/49/34/loadin11.gif) no-repeat center center;}#cboxCurrent{position:absolute;bottom:-25px;left:58px;font-weight:700;color:#7C7C7C;}#cboxPrevious{left:0;background-position:-51px -25px;}#cboxPrevious.hover{background-position:-51px 0;}#cboxNext{left:27px;background-position:-75px -25px;}#cboxNext.hover{background-position:-75px 0;}#cboxClose{right:0;background-position:-100px -25px;}#cboxClose.hover{background-position:-100px 0;}.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0;right:27px;}.cboxSlideshow_on #cboxSlideshow.hover{background-position:-150px 0;}.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px;right:27px;}.cboxSlideshow_off #cboxSlideshow.hover{background-position:-125px 0;}
Colorbox là một jQuery Plugins nên ta có thể dùng nó chung với các API của jQuery.
Cấu trúc để sử dụng colorbox như sau
- Code:
$('selector').colorbox({key:value, key:value, key:value}, callback);
- selector là đối tượng cần áp dụng colorbox. VD: div.prolink, input, img, ...
- key:value có thể dùng nhiều lần, 1 lần hoặc không có (vì đã có các giá trị mặc định). Xem chi tiết tại http://colorpowered.com/colorbox/
- callback là một hàm gọi lại, có thể bỏ qua.
Ví dụ 1:
- Code:
$('a#login').colorbox({transition:'fade', speed:500});
Bạn có thể thấy trong ví dụ trên có sử dụng 2 key:value và không sử dụng callback.
Ví dụ 2:
- Code:
$('a.gallery').colorbox();
Ví dụ 3:
- Code:
$("a[rel='example']").colorbox({title: function(){
var url = $(this).attr('href');
return '<a href="'+url+'" target="_blank">Open In New Window</a>';
}});
Xem thêm ví dụ (Ctrl+U): http://colorpowered.com/colorbox/core/example5/index.html
Viết bởi baivong -FMvi.tk