访问固定底页上的快速链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了访问固定底页上的快速链接相关的知识,希望对你有一定的参考价值。

Show link on bottom page.
  1. /*javascript********************************************************************************/
  2. $(function(){
  3. /*Just sample data*/
  4. for(i=1;i<=50;i++) $('body').append('<h1>text '+i+': blah...blah...blah...</h1>');
  5.  
  6. /*Here's the code*/
  7. $('.button').toggle(function(){
  8. $(this).html('&#171;');
  9. $('.content').slideUp(300);
  10. }, function(){
  11. $(this).html('&#187;');
  12. $('.content').slideDown(300);
  13. });
  14. });
  15.  
  16.  
  17. /*CSS**************************************************************************************/
  18. body{margin:0;padding:0;color:#CCC;}
  19.  
  20. .footer{
  21. position:fixed;
  22. z-index:100;
  23. width:100%;
  24. bottom:0px;
  25. border-top:#222 solid 1px;
  26. }
  27.  
  28. .footer .button{
  29. position:fixed;
  30. right:0px;
  31. bottom:0px;
  32. width:10px;
  33. text-align:center;
  34. padding:5px;
  35. background:#333;
  36. color:#FFF;
  37. font-weight:bold;
  38. cursor:pointer;
  39. }
  40.  
  41. .footer .button:hover{
  42. background:#F60;
  43. }
  44.  
  45. .footer .content{
  46. text-align:center;
  47. background:#000;
  48. padding:5px;
  49. }
  50.  
  51. .footer .content a{
  52. color:#FFF;
  53. margin:0 5px 0 5px;
  54. }
  55.  
  56.  
  57. /*HTML***********************************************************************************/
  58. <div class="footer">
  59. <div class="button">&#187;</div>
  60. <div class="content">
  61. <a href="#">Menu 1</a>
  62. <a href="#">Menu 2</a>
  63. <a href="#">Menu 3</a>
  64. <a href="#">Menu 4</a>
  65. <a href="#">Menu 5</a>
  66. </div>
  67. </div>

以上是关于访问固定底页上的快速链接的主要内容,如果未能解决你的问题,请参考以下文章

从片段向数据库中插入值时ListView不更新

从后面的子母版页代码访问子母版页上的用户控件

如何在片段类而不是活动类中使用底页?

两个页面上相同的锚点 ID:如何从一个页面链接到另一页上的锚点

使用jetpack导航组件从一个底页导航到另一个底页时如何弹出底页对话框

如何从母版页上的用户控件访问母版页中定义的数据集?