楼主: 凡哥

[碎语] 源码小屋

[复制链接]
一生安柠 青恬时光 幸福莓满 心想事橙 桃气满满 梅开颜笑 心若葡提 大吉大荔 樱果相依 喜上莓梢 一坛酒
 楼主| 发表于 2024-9-14 19:33 | 显示全部楼层

2024年9月14日 星期六

三角形的梦想
<style>
	#tz { margin: 30px 0 30px calc(50% - 730px); width: 1280px; height: 720px; background: url('https://638183.freep.cn/638183/t24/webp2/sjx.webp') center/cover; box-shadow: 3px 3px 6px #00000080; z-index: 1; display: grid; place-items: center; position: relative; }
	#player { position: absolute; border-radius: 50%; animation: rot 8s linear infinite var(--state); cursor: pointer; filter: drop-shadow(2px 2px 4px #000) drop-shadow(0 0 2px lightblue); }
	@keyframes rot { to { transform: rotate(360deg); } }
</style>

<div id="tz">
	<audio id="aud" src="https://music.163.com/song/media/outer/url?id=1399118450" autoplay loop></audio>
	<img id="player" src="https://638183.freep.cn/638183/web/svg/sjx.svg" width="300" height="300" alt="" />
</div>

<script>
var sc = document.createElement('script');
sc.src = 'https://638183.freep.cn/638183/web/js2024/fscreen.js';
sc.charset = 'utf-8';
document.body.appendChild(sc);
sc.onload = () => FS({
	papa: '#tz',
	scale: [player],
	css: 'bottom: 20px; --bg: transparent; --color: white',
});
mState = () => {
	tz.style.setProperty('--state', aud.paused ? 'paused' : 'running');
	player.title = aud.psuded ? '点击播放' : '点击暂停';
};
aud.onplaying = aud.onpause = () => mState();
player.onclick = () => aud.paused ? aud.play() : aud.pause();
</script>

评分

1

查看全部评分

点评
回复

使用道具

一生安柠 青恬时光 幸福莓满 心想事橙 桃气满满 梅开颜笑 心若葡提 大吉大荔 樱果相依 喜上莓梢 一坛酒
 楼主| 发表于 2024-9-14 19:39 | 显示全部楼层
花简静 发表于 2024-9-14 19:31
明明是被ko了。。

又不是拳击比赛
点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
发表于 2024-9-14 19:42 | 显示全部楼层
凡哥 发表于 2024-9-14 19:39
又不是拳击比赛

对我来说差不多,直接败给它了
点评
回复

使用道具

一生安柠 青恬时光 幸福莓满 心想事橙 桃气满满 梅开颜笑 心若葡提 大吉大荔 樱果相依 喜上莓梢 一坛酒
 楼主| 发表于 2024-9-14 19:43 | 显示全部楼层
花简静 发表于 2024-9-14 19:42
对我来说差不多,直接败给它了

倒也痛快
点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
发表于 2024-9-14 19:52 | 显示全部楼层

瞄一眼不懂得太多,力量悬殊太大,只能望而兴叹
点评
回复

使用道具

一生安柠 青恬时光 幸福莓满 心想事橙 桃气满满 梅开颜笑 心若葡提 大吉大荔 樱果相依 喜上莓梢 一坛酒
 楼主| 发表于 2024-9-16 07:47 | 显示全部楼层
花简静 发表于 2024-9-14 19:52
瞄一眼不懂得太多,力量悬殊太大,只能望而兴叹

点评
回复

使用道具

一生安柠 青恬时光 幸福莓满 心想事橙 桃气满满 梅开颜笑 心若葡提 大吉大荔 樱果相依 喜上莓梢 一坛酒
 楼主| 发表于 2024-9-16 07:50 | 显示全部楼层

2024年9月16日 星期一

坠入亚特兰蒂斯

<style>
#mydiv { margin: 30px 0 30px calc(50% - 730px); width: 1280px; height: 720px; background: url('https://638183.freep.cn/638183/web/svg/balls1.svg') repeat-x 0 5% / 25% 25%, url('https://638183.freep.cn/638183/t24/webp2/ytlds.webp') center/cover; z-index: 1; box-shadow: 03px 3px 6px #333; display: grid; place-items: center; animation: hue-rot 10s linear infinite alternate var(--state); position: relative; }
#player { position: absolute; width: 200px; height: 200px; border-radius: 50%; top: 20px; filter: drop-shadow(-400px 200px 0 silver) drop-shadow(400px 200px 0 silver); cursor: pointer; transition: .5s; }
@keyframes hue-rot { to { filter: hue-rotate(360deg); } }
</style>

<div id="mydiv">
	<audio id="aud" src="https://music.163.com/song/media/outer/url?id=2625047869" autoplay loop></audio>
	<img id="player" src="https://638183.freep.cn/638183/web/svg/rotc.svg" alt="" title="播放/暂停" />
</div>

<script>
var sc = document.createElement('script');
sc.src = 'https://638183.freep.cn/638183/web/js2024/fscreen.js';
sc.charset = 'utf-8';
document.body.appendChild(sc);
sc.onload = () => FS({papa: '#mydiv', scale: [player], css: 'bottom: 20px; --fsBg: #eeeeee90; --color: #336699;'});

aud.onplaying = aud.onpause = () => mydiv.style.setProperty('--state', aud.paused ? 'paused' : 'running');
player.onclick = () => aud.paused ? aud.play() : aud.pause();
</script>

评分

1

查看全部评分

点评
回复

使用道具

一生安柠 青恬时光 幸福莓满 心想事橙 桃气满满 梅开颜笑 心若葡提 大吉大荔 樱果相依 喜上莓梢 一坛酒
 楼主| 发表于 2024-9-17 08:03 | 显示全部楼层

2024年9月17日 星期二

Ancient Voices

<style>
#mydiv { margin: 30px 0 30px calc(50% - 730px); width: 1280px; height: 720px; background: url('https://638183.freep.cn/638183/t24/webp2/acvoices.webp') no-repeat center/cover; box-shadow: 3px 3px 6px #333; z-index: 1; display: grid; place-items: center; position: relative; --rad: 80px; }
#player { position: absolute; left: 100px; top: 60px; width: 100px; height: 100px; background: white; border-radius: 50%; box-shadow: inset 0 0 50px #7cb6a0a0, 0 0 var(--rad) white; cursor: pointer; transition: 0.2s; }
#psvg { position: absolute; width: 500px; height: 500px; filter: drop-shadow(100px 0 10px white) drop-shadow(-100px 0 6px white); transition: 0.75s;  }
</style>

<div id="mydiv">
	<audio id="aud" src="https://music.163.com/song/media/outer/url?id=23969998" autoplay loop></audio>
	<img id="psvg" alt="" src="https://638183.freep.cn/638183/web/svg/balls2.svg" />
	<div id="player" title="播放/暂停"></div>	
</div>

<script>
aud.ontimeupdate = () => mydiv.style.setProperty('--rad', Math.random() * 100 + 50 + 'px');
player.onclick = () => aud.paused ? (aud.play(), psvg.style.opacity="1") : (aud.pause(), psvg.style.opacity="0");
</script>

评分

1

查看全部评分

点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
发表于 2024-9-17 09:40 | 显示全部楼层
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
发表于 2024-9-17 09:40 | 显示全部楼层
这两个贴子音乐都神秘空灵,耐听
点评
回复

使用道具

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|千山论坛

GMT+8, 2024-9-20 07:59

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表