Jump to content

Как сделать перемотку вверх плавной?


Vic-Tor
 Share

Recommended Posts

Еще раз всем привет!

Можно ли в этом скрипте сделать медленную перемотку вверх? Это скрипт кнопки "вверх"

 

СКРИПТ:

 

$(function(){$.fn.scrollToTop=function(){$(this).hide().removeAttr("href");if($(window).scrollTop()!="0"){$(this).fadeIn("slow")}var scrollDiv=$(this);$(window).scroll(function(){if($(window).scrollTop()=="0"){$(scrollDiv).fadeOut("slow")}else{$(scrollDiv).fadeIn("slow")}});$(this).click(function(){$("html, body").animate({scrollTop:0},"slow")})}});

 

Спасибо!!!

Link to comment
Share on other sites

Нужно всего-то добавить параметр в функцию, и скорость можно какую угодно указывать.

Спасибо! А Вы можете всё это привязать к моей кнопке:

 

http://xn—-7sbbntllhgghd2af4opb.in.ua/images/up1.png. Варианта достаточно одного.

 

Вот так выглядит мой скирпт:

 

$(function(){$.fn.scrollToTop=function(){$(this).hide().removeAttr("href");if($(window).scrollTop()!="0"){$(this).fadeIn("slow")}var scrollDiv=$(this);$(window).scroll(function(){if($(window).scrollTop()=="0"){$(scrollDiv).fadeOut("slow")}else{$(scrollDiv).fadeIn("slow")}});$(this).click(function(){$("html, body").animate({scrollTop:0},"slow")})}});

 

Так css:

 

#toTop{position:fixed;bottom:20px;right:21px;background:none;cursor:pointer;}

 

Ну а это хтмл:

 

<a href="#" id="toTop"><img src="images/up1.png" alt="кнопка наверх" border="0" align="middle" /></a> <script src="http://xn—-7sbbntllhgghd2af4opb.in.ua/toTop.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { $("#toTop").scrollToTop(); }); </script>

 

Огромное спасибо!!! С меня пиво и таранька!!! ;)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy