我有使用硬币滑块的画廊
var $jq = jQuery.noConflict();
$jq(window).load(function() {
var imheight = $jq(window).height()-40;
var imwidth = imheight / 1.5;
$jq('#placeholder').css({'width':imwidth+'px','height':imheight+'px','margin-left':'-'+imwidth/2+'px','margin-top':'-'+imheight/2+'px'});
$jq('#vslider').coinslider({
width:imwidth,
height:imheight,
spw: 6,
sph: 4,
delay: 2500,
sDelay: 30,
opacity: 0.7,
titleSpeed: 1500,
effect: '',
navigation: false,
links : true,
hoverPause: false,
stopAtLastSlide: true
});
})
和 HTML:
<div id="placeholder">
<div id="vslider">
<a href="/main"><img src="/preload/2.jpg" alt="701" /></a>
<a href="/main"><img src="/preload/1.jpg" alt="563" /></a>
</div>
</div>
占位符 div 以正确的宽度和高度加载。
但是 vslider 不会改变它的大小。
会是什么?