03/17
2015
因为本站的logo经常换,换来换去也没几个满意的,所以写了个js,把现在有的图都放上,一个个切换。
<script type="text/javascript"> var headImg=["/f/head1.png","/f/head2.png","/f/head3.png"]; var headImgIndex=1; function cc () { headImgIndex=headImgIndex+1; if (headImgIndex==headImg.length) {headImgIndex=0}; //alert(headImgIndex); document.getElementById("logo").setAttribute("src", headImg[headImgIndex]); } $(document).ready(function () { setInterval("cc()", 10000); }); </script>
这样以后就可以随便折腾logo了←_←(雾
定时器最好在页面载入后使用,使用的function要先定义好。
用定时器定时更换logo
-
Google Chrome 55GNU/Linux x64 -
Google Chrome 55GNU/Linux x64 楼主,您说的logo指的是您博客上的头像吗?为什么我在index.php页面上设置了以后没有反映呢?
原来有间隔,解决了。