jQuery / fadeIn、fadeOut 将窗口滚动到顶部
干杯,
我用 jQuery 轮播来旋转几个图像,有一个奇怪的副作用 - 每次它淡入(或淡出?)时,窗口都会滚动到顶部。有时它会滚动到父对象的顶部,有时甚至更高 - 似乎没有此副作用引用的真正锚点或坐标。这是标记(我从 SO 答案中借用了脚本的一些行,但我现在找不到作者,抱歉......)。
HTML
<div id="carousel">
<div id="carousel_inner">
<ul id="carousel_ul">
<li>
<p><a href="url_1">Label 1</a></p>
<a href="url_1"><img src="src_1" /></a>
</li>
<li>
<p><a href="url_2">Label 2</a></p>
<a href="url_2"><img src="src_2" /></a>
</li>
<li>
<p><a href="url_3">Label 3</a></p>
<a href="url_3"><img src="src_3" /></a>
</li>
<li>
<p><a href="url_4">Label 4</a></p>
<a href="url_4"><img src="src_4" /></a>
</li>
</ul>
</div>
</div>
UL 中包含的元素按以下顺序显示:123、234、341、412、123...它们被认为是一起淡出和淡入的。 这是 JS 代码:
$(document).ready(function() {
var item_width = $('#carousel_ul li').outerWidth()+10;
var left_indent = parseInt($('#carousel_ul').css('left')) - item_width;
var counter = 0;
$('#carousel_ul').hover(function(){
clearInterval(spinner);
},
function(){
spinner = setInterval(spin, tempo);
}
);
function spin(){
$('#carousel_ul').fadeOut(300,function(){
$('#carousel_ul').css('left' , left_indent);
$('#carousel_ul li:last').after($('#carousel_ul li:first'));
$('#carousel_ul').css('left','0px');
});
$('#carousel_ul').fadeIn(300);
}
var spinner = setInterval(spin, tempo);
});
最后是 CSS
#carousel_inner {
float:left;
width:950px;
overflow: hidden;
background: #fff;
}
#carousel_ul {
position:relative;
left:0px;
list-style-type: none;
margin: 0px;
padding: 0px;
width:9999px;
padding-bottom:10px;
}
#carousel_ul li{
float: left;
width:310px;
padding:0px;
height:310px;
background: #fff;
margin-top:10px;
margin-bottom:10px;
margin-left:0px;
margin-right:10px;
line-height: 310px;
}
#carousel_ul li a {
display: block;
color: #000;
text-decoration: none;
font-weight:normal;
font-size: 1.5em;
}
#carousel_ul li p {
display: none;
}
#carousel_ul li:hover p {
display: block;
z-index: 1000;
position: absolute;
background: url(../images/home-opener-bg.png);
width: 310px;
height: 310px;
top: 10px;
text-align: center;
margin: 0px;
padding: 3px 5px;
}
#carousel_ul li img {
.margin-bottom:-4px;
border:0px;
position: relative;
}
所以我的问题是:为什么它会跳转?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单击 ul 下的锚标记
返回 false
return false
on a click of anchor tag under your ul如果我正确理解你的问题,一旦图像淡出,父级的显示属性将设置为无。因此 HTML 的其余部分会向上流动以填充空间。指定容器元素的高度就可以了。
在使用画廊时,我倾向于使用 jQuery Cycle 插件: http://jquery.malsup.com/cycle/< /a>
If I understand your question correctly, once the image fades out the display property of the parent is set to none. So the rest of the HTML just flows up to fill up the space. Specifying a height for the container element should do it.
I tend to use the jQuery Cycle plugin when working with galleries : http://jquery.malsup.com/cycle/