2010年6月30日 星期三

顯示 / 隱藏 Blogger 導覽列的方法

在管理頁面 -> 版面配置 -> 修改 HTML,搜尋</head>,並且在</head>上方插入下列程式碼。


<!-- jquery -->
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js' type='text/javascript'/>
<!-- end jquery -->

<!-- 自動顯示/隱藏 blogger 導覽列 -->
<script type='text/javascript'>
$(document).ready(function() {
  $(&quot;#navbar-iframe&quot;).css(&quot;opacity&quot;,&quot;0.0&quot;).hover(
    function () {
      $(this).animate({
        opacity: 1.0
      });
    },
    function () {
      $(this).animate({
        opacity: 0.0
      });
    }
   );
});

</script>
<!-- end 自動顯示/隱藏 blogger 導覽列 -->

沒有留言:

張貼留言

Related Posts with Thumbnails