释放双眼,带上耳机,听听看~!
由于时不时会有人问本博客右下角人物如何添加,这里还是稍微介绍一下。其实这是一个开源的项目,开源项目地址:sakana
使用起来也非常简单,如果使用的是 wordpress,那么找到主题编辑器,在 footer.php 添加如下代码即可:
<div class="sakana-box"></div> <script src="https://cdn.jsdelivr.net/npm/sakana"></script> <script> // 启动 const sakana = Sakana.init({ el: '.sakana-box', // 启动元素 node 或 选择器 scale: .5, // 缩放倍数 canSwitchCharacter: true, // 允许换角色 inertia: 0.01, // 惯性 decay: 0.97, // 衰减 r: -20, // 启动角度 y: 10, // 启动高度 scale: 0.5, // 缩放倍数 translateY: 0, // 位移高度 }); </script> <style> html .sakana-box{ z-index: 80; position: fixed; right: 0; bottom: 0; transform-origin: 100% 100%; /* 从右下开始变换 */ } </style>
以上是本博客使用到的参数,由于弹簧弹跳太快限制了一下,不然晃眼睛。此外需要注意的是,如果弹簧人物角色加载缓慢,可以将 js 文件下载到本地。
嘘,点击底座还可以切换人物哦!!