请查看此页面(例如)
http://www.christinamichael.in/create-a-powerful-human-disintegration-effect-in-photoshop
我想知道我怎么能有这样的?
我希望在firefox和chrome中支持某些内容。
答案 0 :(得分:1)
您可以使用ANCHOR标记进行平滑滚动。 结果如下。
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});