WordPress – 动态标题

<!---动态标题--->
<script type="text/javascript">// <![CDATA[
    jQuery(document).ready(function() {
    	function d() {
    		document.title = document[b] ? "(つェ⊂)我藏好了哦" : a
    	}
    	var b, c, a = document.title;
    	"undefined" != typeof document.hidden ? (b = "hidden", c = "visibilitychange") : "undefined" != typeof document.mozHidden ? (b = "mozHidden", c = "mozvisibilitychange") : "undefined" != typeof document.webkitHidden && (b = "webkitHidden", c = "webkitvisibilitychange"), ("undefined" != typeof document.addEventListener || "undefined" != typeof document[b]) && document.addEventListener(c, d, !1)
    });
    
  // ]]></script>

放在 footer前

小工具——自定义html

<script src="https://files.cnblogs.com/files/quaint/sakuraPlus.js"></script>
<script src='http://mat1.gtimg.com/libs/jquery/1.12.0/jquery.js'></script>
<script type="text/javascript">
$(document).ready(function(){
    var a_index = 0;
    $("body").click(function(e){
        var a = new Array("富强", "民主", "文明", "和谐", "自由", "平等", "公正" ,"法治", "爱国", "敬业", "诚信", "友善");
        var $i = $("<span/>").text(a[a_index]);
        a_index = (a_index + 1) % a.length;
        var x = e.pageX,y = e.pageY;
        $i.css({
            "z-index": 99999,
            "top": y - 20,
            "left": x,
            "position": "absolute",
            "font-weight": "bold",
            "color": "#ff6651"
        });
        $("body").append($i);
        $i.animate({"top": y-180,"opacity": 0},1500,function() {
            $i.remove();
        });
    });
});
</script>

放在 footer前

图片[3]-WordPress – 动态标题
© 版权声明
THE END
点赞9捐助 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容