在管理頁面 -> 版面配置 -> 修改 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() {
$("#navbar-iframe").css("opacity","0.0").hover(
function () {
$(this).animate({
opacity: 1.0
});
},
function () {
$(this).animate({
opacity: 0.0
});
}
);
});
</script>
<!-- end 自動顯示/隱藏 blogger 導覽列 -->
沒有留言:
張貼留言