1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <meta name="viewport" content="width=device-width"> <style>
html .sakana-box{ position: fixed; right: 0; bottom: 0; transform-origin: 100% 100%; /* 从右下开始变换 */ } </style>
<div class="sakana-box"></div>
<script src="https://cdn.jsdelivr.net/npm/sakana@1.0.8"></script> <script> // 取消静音 Sakana.setMute(true);
// 启动 Sakana.init({ el: '.sakana-box', // 启动元素 node 或 选择器 scale: .5, // 缩放倍数 canSwitchCharacter: true, // 允许换角色 scale: 0.425, // 缩放倍数 character: 'takina', // 启动角色 'chisato','takina' }); </script>
|