jQuery水平滑块拖动照片墙jQuery水平滑块拖动照片墙是一款基于jQuery实现的水平滑块拖动照片墙展示效果和点击图片可以放大结合。jquery水平拖动照片墙图片放大 所属专题:图片代码
<script type="text/javascript">
//首页banner图展示init
window.addEvent("load", function(){
var dtSlideshow = new dtSliderGallery({container: $("gallery-slider"),arrowControls: 1,description: 1,transitionDuration: 1000,transitionInterval: 15000});});
/** 无限滚动
function getTmplData() {
jQuery.get("/web/idol/rest/" + jQuery('#pageNo').val() + "/0",
function(data) {
for (var i = 0; i < data.items.length; i++ ) {
jQuery('#idol_tmpl').tmpl(data.items[i]).appendTo('#main_container');
}
jQuery('#pageNo').val(parseInt(jQuery('#pageNo').val()) + 1);
});
}
jQuery(window).bind("scroll",function() {
// 然后判断窗口的滚动条是否接近页面底部
if (jQuery(document).scrollTop() + jQuery(window).height() > jQuery(document).height() - 20) {
if (jQuery('#pageNo').val() < 3) {
getTmplData();
}
}
}) **/
</script>