jQuery imagesloaded插件
大家好
我试图用缩略图创建一个简单的幻灯片库。
我使用循环插件创建幻灯片和缩略图
http://www.ttmt.org.uk/gallerytest/
缩略图位于粘滞的页脚中,将停留在窗口的底部。
我希望幻灯片显示图像能够填充窗口的其余部分,并在调整窗口大小时进行缩放。
我正在使用此功能
function resizeImg() {
$('#slideshow img').css({'height':$('#wrap').height()-footerHeight,'width':'auto'});
}
此时窗口调整大小时有效,但图像首次加载时无效。
我需要在加载图像时调用该函数。
我发现了看似可以正常工作的imagesloaded插件 - https://github.com/desandro/imagesloaded
我的问题是我无法在代码中看到如何使用该插件。
任何人都可以解释我如何使用imagesloaded插件调用我的resizeImg函数。
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<!--jQuery-->
<script type="text/javascript" src="js/jquery1.7.2.js"></script>
<script type="text/javascript" src="js/cycle.js"></script>
<!--CSS-->
<style type="text/css">
*{
margin:0;
padding:0;
}
ul{
list-style:none;
}
/**/
html, body {
height:100%;
text-align:center;
}
#wrap {
margin:auto;
min-height:100%;
margin-top:-100px;
text-align:left;
}
* html #wrap {
height:100%
}
#header {
background:red;
border-top:100px solid #fff;
}
#footer {
background:#eee;
margin:auto;
height:100px;
clear:both;
}
/**/
#slideshow img{
margin:0 0 0 55px;
height:100%;
}
div#thumbWrap {
position: relative;
height: 100px;
width: 500px;
overflow: auto;
margin:0 0 0 50px;
}
ul#thumbs {
display: block;
width: 2000px;
padding: 15px 0 0 15px;
}
ul#thumbs li {
display: block;
float: left;
padding: 0 4px;
}
ul#thumbs a {
display: block;
text-decoration: none;
}
ul#thumbs img {
border: 3px #fff solid;
}
ul#thumbs a:hover img {
opacity: 0.5;
}
#slideshow img { display: none }
#slideshow img.first { display: block }
</style>
</head>
<body>
<div id="wrap">
<div id="header">
</div><!-- #header -->
<div id="slideshow">
<img src="images/plane01.jpg" alt="" class="first"/>
<img src="images/plane02.jpg" alt="" />
<img src="images/plane03.jpg" alt="" />
<img src="images/plane04.jpg" alt="" />
<img src="images/plane05.jpg" alt="" />
<img src="images/plane06.jpg" alt="" />
<img src="images/plane07.jpg" alt="" />
<img src="images/plane08.jpg" alt="" />
<img src="images/plane09.jpg" alt="" />
<img src="images/plane10.jpg" alt="" />
</div><!-- #content -->
</div><!-- #wrap -->
<div id="footer">
<div id="thumbWrap">
<ul id="thumbs">
</ul>
</div>
</div>
<script type="text/javascript">
$(window).load(function() {
resizeImg();
/*-cycle
*/
$('#slideshow').cycle({
fx: 'fade',
speed: 'fast',
timeout: 0,
pager: '#thumbs',
before: resizeImg(),
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"><img src="' + slide.src + '" width="auto" height="50" /></a></li>';
}
});
/*-thumbnailScroll
*/
var div = $('div#thumbWrap'), ul = $('ul#thumbs'), ulPadding = 15;
var divWidth = div.width();
div.css('overflow','hidden');
var lastLi = ul.find('li:last-child');
div.mousemove(function(e){
var ulWidth = lastLi[0].offsetLeft + lastLi.outerWidth() + ulPadding;
var left = (e.pageX - div.offset().left) * (ulWidth-divWidth) / divWidth;
div.scrollLeft(left);
});
var footerHeight = $('#footer').height();
function resizeImg() {
$('#slideshow img').css({'height':$('#wrap').height()-footerHeight,'width':'auto'});
}
$(window)
.scroll(resizeImg)
.resize(resizeImg)
.onload(resizeImg)
});
</script>
</body>
</html>
--------更新---------
我现在差不多了。
http://www.ttmt.org.uk/gallerytest/
imagesLoaded插件在加载时调整第一个图像的大小,然后使用
after: resizeImg
在循环函数中,在图像加载后调用resize函数。
我留下的问题是在图像加载后调用resizeImg函数时图像大小的跳跃。
任何人都可以看到这种跳跃大小的方法
答案 0 :(得分:0)
你可以尝试这个(在$(window).load(...)事件处理程序中添加此代码) - &gt;
$('#slideshow').imagesLoaded( function( $images, $proper, $broken ) {
// callback provides three arguments:
// $images: the jQuery object with all images
// $proper: the jQuery object with properly loaded images
// $broken: the jQuery object with broken images
// `this` is a jQuery object of container
console.log( $images.length + ' images total have been loaded in ' + this );
console.log( $proper.length + ' properly loaded images' );
console.log( $broken.length + ' broken images' );
resizeImg(); //<<-- At this point in time, all images are loaded in slideshow container
});
另外处理after
循环插件回调并调用resizeImg();
答案 1 :(得分:0)
在resizeImg中,首先尝试使用窗口而不是“#wrap”来获取将图像缩放到的最大高度:
function resizeImg() {
$('#slideshow img').css({'height':$(window).height()-footerHeight,'width':'auto'});
}
要使用imagesLoaded插件,在将脚本添加到其他人之后,您可以在窗口滚动,调整大小和上载处理程序之后尝试使用此行:
$('#slideshow img').imagesLoaded(resizeImg);