1. 程式人生 > 其它 >自定義部落格園直接入土

自定義部落格園直接入土

部落格園開通js許可權!!!

歌曲外鏈

去網易雲找一個歌曲連結,直接複製到頁首HTML程式碼的地方就行了。

<embed frameborder="no" border="0" marginwidth="0" marginheight="0" width=500 height=86 src="//music.163.com/outchain/player?
type=2&id=434902435&auto=1&height=66"/>

滑鼠點選效果

<script type="text/javascript">
       var a_idx = 0;
       jQuery(document).ready(function($) {
       $("body").click(function(e) {
       var a = new Array("❤喜歡就關注一下吧❤","❤不是點這裡哦❤","❤快去點贊❤","❤在文章最下面哦❤","❤快去推薦一下吧❤","❤感謝觀看❤","❤");
       var $i = $("<span></span>").text(a[a_idx]);
       a_idx = (a_idx + 1) % a.length;
       var x = e.pageX,
       y = e.pageY;
       $i.css({
           "z-index": 999999999999999999999999999999999999999999999999999999999999999999999,
           "top": y - 20,
           "left": x,
           "position": "absolute",
           "font-weight": "bold",
           "color": "rgb("+~~(255*Math.random())+","+~~(255*Math.random())+","+~~(255*Math.random())+")"
      });
       $("body").append($i);
       $i.animate({
           "top": y - 180,
           "opacity": 0
      },
       1500,
       function() {
           $i.remove();
      });
  });
});
</script>

 

 

雪花效果

```html
<script type="text/javascript">
       var a_idx = 0;
       jQuery(document).ready(function($) {
       $("body").click(function(e) {
       var a = new Array("❤喜歡就關注一下吧❤","❤不是點這裡哦❤","❤快去點贊❤","❤在文章最下面哦❤","❤快去推薦一下吧❤","❤感謝觀看❤","❤");
       var $i = $("<span></span>").text(a[a_idx]);
       a_idx = (a_idx + 1) % a.length;
       var x = e.pageX,
       y = e.pageY;
       $i.css({
           "z-index": 999999999999999999999999999999999999999999999999999999999999999999999,
           "top": y - 20,
           "left": x,
           "position": "absolute",
           "font-weight": "bold",
           "color": "rgb("+~~(255*Math.random())+","+~~(255*Math.random())+","+~~(255*Math.random())+")"
      });
       $("body").append($i);
       $i.animate({
           "top": y - 180,
           "opacity": 0
      },
       1500,
       function() {
           $i.remove();
      });
  });
});
</script>

 

看板娘

<!-- 引用的別人提供的js -->
<script src="https://files.cnblogs.com/files/liuzhou1/L2Dwidget.min.js"></script>
<script>
   L2Dwidget.init({
       "model": {
           /*live2d外網,這裡用的koharu*/
       jsonPath: "https://unpkg.com/[email protected]/assets/koharu.model.json",
           "scale": 1
      },
       "display": {
           "position": "right",
           "width": 150,
           "height": 400,
           "hOffset": 0,
           "vOffset": -20
      },
       "mobile": {
           "show": true,
           "scale": 0.5
      },
       "react": {
           "opacityDefault": 0.7,
           "opacityOnHover": 0.2
      }
  });
</script>

 最後結果就醬。