|
QQ20250124-101837.jpg (360.77 KB, 下載次數(shù): 19)
下載附件
2025-1-24 10:18 上傳
只用把以下代碼放到后臺 - 全局 - 站點(diǎn)信息 - 網(wǎng)站第三方統(tǒng)計(jì)代碼
- <button id="fireworks-btn" title="煙火秀" style="position: fixed; bottom: 20px; right: 20px; cursor: pointer; z-index: 1000;">
- ??
- </button>
- <div id="fireworks-container" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999;">
- <iframe id="fireworks-iframe" style="width: 100%; height: 100%; border: none; opacity: 0.8;"></iframe>
- </div>
- <script>
- document.getElementById('fireworks-btn').addEventListener('click', function () {
- const container = document.getElementById('fireworks-container');
- const iframe = document.getElementById('fireworks-iframe');
- if (container.style.display === 'none' || container.style.display === '') {
- if (!iframe.src) {
- iframe.src = 'https://cn.admxn.com/fireworks/dist/index.html';
- }
- container.style.display = 'block';
- } else {
- container.style.display = 'none';
- }
- });
- </script>
復(fù)制代碼
返回前端就能看到右下角的煙火小按鈕啦
DEMO:https://cn.admxn.com/
如需本地部署可下載
fireworks.zip
(93.88 KB, 下載次數(shù): 62)
2025-1-24 10:12 上傳
點(diǎn)擊文件名下載附件
解壓后傳至站點(diǎn)根目錄,然后將上面iframe.src = 'https://cn.admxn.com/fireworks/dist/index.html';中的域名改為你的域名即可
|
|