创建一个动态链接,链接到页面顶部,渐变并定位在底部的一些像素处

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建一个动态链接,链接到页面顶部,渐变并定位在底部的一些像素处相关的知识,希望对你有一定的参考价值。

Changes 340px with the page footer height.

CSS:

#top_link{
position:fixed;
bottom:20px;
right:50%;
margin-right:-600px;
overflow:hidden;
text-indent:-9999px;
background:url(../img/top.png) no-repeat 0 0;
display:block;
width:54px;
height:54px;
}
  1. $(function(){
  2. if(!Modernizr.touch){
  3. (function(){
  4. var scrollTop = $(window).scrollTop(),
  5. scrollBottom = $(document).height() - $(window).height() - scrollTop,
  6. $top_link = $("<a/>").attr({href:"#top",id:"top_link",title:"Voltar ao topo"}).text("Voltar ao topo").click(function(e){
  7. e.preventDefault();
  8. $( ($.browser.webkit) ? "body" : "html" ).animate({scrollTop:0}, "slow");
  9. }).appendTo("body");
  10.  
  11. if(scrollTop < 200){
  12. $top_link.hide();
  13. }
  14. if(scrollBottom < 380){
  15. $top_link.css({
  16. position:"absolute",
  17. bottom:"400px"
  18. });
  19. }
  20.  
  21. $(window).scroll(function(){
  22. var scrollTop = $(window).scrollTop(),
  23. scrollBottom = $(document).height() - $(window).height() - scrollTop;
  24.  
  25. if(scrollTop > 200){
  26. $top_link.fadeIn("slow");
  27. }else{
  28. $top_link.fadeOut("slow");
  29. }
  30.  
  31. if(scrollBottom < 380){
  32. $top_link.css({
  33. position:"absolute",
  34. bottom:"400px"
  35. });
  36. }else{
  37. $top_link.css({
  38. position:"fixed",
  39. bottom:"20px"
  40. });
  41. }
  42.  
  43. });
  44. })();
  45. }
  46. });

以上是关于创建一个动态链接,链接到页面顶部,渐变并定位在底部的一些像素处的主要内容,如果未能解决你的问题,请参考以下文章

vimium快捷键列表

锚链接

如何在颤动中显示具有顶部和底部渐变阴影的图像?

Bootstrap 3 Popover 箭头和框定位

如何实现网页超链接的定位问题

css点击a链接到下一页底部