访问固定底页上的快速链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了访问固定底页上的快速链接相关的知识,希望对你有一定的参考价值。
Show link on bottom page.
/*javascript********************************************************************************/ $(function(){ /*Just sample data*/ for(i=1;i<=50;i++) $('body').append('<h1>text '+i+': blah...blah...blah...</h1>'); /*Here's the code*/ $('.button').toggle(function(){ $('.content').slideUp(300); }, function(){ $(this).html('»'); $('.content').slideDown(300); }); }); /*CSS**************************************************************************************/ body{margin:0;padding:0;color:#CCC;} .footer{ position:fixed; z-index:100; width:100%; bottom:0px; border-top:#222 solid 1px; } .footer .button{ position:fixed; right:0px; bottom:0px; width:10px; text-align:center; padding:5px; background:#333; color:#FFF; font-weight:bold; cursor:pointer; } .footer .button:hover{ background:#F60; } .footer .content{ text-align:center; background:#000; padding:5px; } .footer .content a{ color:#FFF; margin:0 5px 0 5px; } /*HTML***********************************************************************************/ <div class="footer"> <div class="button">»</div> <div class="content"> <a href="#">Menu 1</a> <a href="#">Menu 2</a> <a href="#">Menu 3</a> <a href="#">Menu 4</a> <a href="#">Menu 5</a> </div> </div>
以上是关于访问固定底页上的快速链接的主要内容,如果未能解决你的问题,请参考以下文章
两个页面上相同的锚点 ID:如何从一个页面链接到另一页上的锚点