问问题
25749 次
2 回答
13
检查此演示http://jsfiddle.net/yeyene/J3zyq/3/
$(document).ready(function() {
$(window).scroll(function() {
if($(this).scrollTop() > 100){
$('#goTop').stop().animate({
top: '20px'
}, 500);
}
else{
$('#goTop').stop().animate({
top: '-100px'
}, 500);
}
});
$('#goTop').click(function() {
$('html, body').stop().animate({
scrollTop: 0
}, 500, function() {
$('#goTop').stop().animate({
top: '-100px'
}, 500);
});
});
});
于 2013-07-15T04:43:28.667 回答
0
基于此如何使用 CSS 更改滚动背景?, 和一些改变来满足你的effect
愿望CSS3 & jQ
HTML
<div id="up"></div>
CSS
#up {
background: url(http://icdn.lenta.ru/assets/icons-s238578731b-c5df9ffc01b66d2cee1e3e3d6d74e49b.png) no-repeat;
background-position: -2329px 0;
display: inline-block;
vertical-align: middle;
position: fixed;
right: 100px;
top: -64px;
width: 54px;
height: 54px;
cursor: pointer;
opacity: 0;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
#up.scrolled{
opacity:1;
top: 10px;
}
JS
jQuery(window).scroll(function(){
var fromTopPx = 200; // distance to trigger
var scrolledFromtop = jQuery(window).scrollTop();
if(scrolledFromtop > fromTopPx){
jQuery('#up').addClass('scrolled');
}else{
jQuery('#up').removeClass('scrolled');
}
});
jQuery('#up').on('click',function(){
jQuery("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
当然,您可以更改效果并使用 jQuery 动画而不是 CSS3……但这取决于您的需要。
现场示例:http: //jsfiddle.net/E2aWr/
于 2013-07-14T21:52:24.977 回答