查看: 255|回复: 22

[活动] 【凡哥教程第八讲作业之二】【花简静】白噪音 - 银临(众多子元素的联动控制)

[复制链接]
一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
发表于 2024-7-28 22:10 | 显示全部楼层 |阅读模式

评分

5

查看全部评分

点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
 楼主| 发表于 2024-7-28 22:11 | 显示全部楼层
<!-- 第一部分 :css代码 -->   <style> /* 帖子容器id选择器 */ #mydiv {     position: relative;     margin: 30px 0 30px calc(50% - 931px);     width: 1700px;     height: 900px;     background: url('https://642303.freep.cn/642303/tu/20240728di800202.webp') no-repeat center/cover;     overflow: hidden; }   /* 小播class选择器 */ .player {     position: absolute;     bottom: 40px;     width: 120px;     height: 120px;     opacity: .99;     cursor: pointer;     animation: rot 8s linear infinite var(--state); } .player:nth-of-type(4) { width: 70px;height: 70px;right: 450px;bottom:360px; } /* 对标的 img 标签排在帖子中第3位 */ .player:nth-of-type(5) {border-radius: 50%;width: 50px;height: 50px;left: 296px; bottom:580px; } /* 对标的 img 标签排在帖子中第4位 */     /* 飞鹰图片选择器 */ .bird {     position: absolute;     right: -100px;     bottom: 10px;     width: 120px;     height: 120px; opacity: .3;     animation: fly 16s linear infinite var(--state); } .bird:nth-of-type(2) { bottom: 110px;width: 160px;height: 160px;animation-delay: -10s; } /* 对标的 img 标签排在帖子中第2位 :提前2秒执行动画 */ .bird:nth-of-type(3) { bottom: 310px;width: 140px;height: 140px;animation-delay: -14s; } /* 对标的 img 标签排在帖子中第3位 :提前4秒执行动画 */     /* 视频class选择器 */ .vid {     position: absolute;     width: 100%;     height:110%;     object-fit: cover;     pointer-events: none;     opacity: 1; } .vid:nth-of-type(1) {    top:-80px;mix-blend-mode: screen;border-radius: 50%;width: 80%;height:60%; right:-350px;opacity: 0.99; top:430px;} /* 对标的 video 标签排在帖子中第1位 */ .vid:nth-of-type(2) { width: 16%;height:16%; opacity: 0.96; mix-blend-mode: screen;top:510px;left:150px;-webkit-mask: radial-gradient(circle, silver, lightgreen, cyan, transparent,transparent);} /* 对标的 video 标签排在帖子中第2位 */ @keyframes rot { to { transform: rotate(360deg); } } @keyframes fly { to { right: 1600px; } } </style>   <!-- 第二部分 :html代码 父元素带9个子元素 --> <div id="mydiv">     <audio id="aud" src="https://music.163.com/song/media/outer/url?id=1483504366" autoplay loop></audio>     <video class="vid" src="https://img.tukuppt.com/video_show/2629112/00/02/24/5b5866d92b5c4.mp4" autoplay loop muted></video>     <video class="vid" src="https://img.tukuppt.com/video_show/2418175/00/18/94/5ef7acd140037.mp4" autoplay loop muted></video>     <img class="bird" alt="" src="https://642303.freep.cn/642303/za/pngsucai_2614287_2df54e.png" /> <img class="bird" alt="" src="https://642303.freep.cn/642303/za/pngsucai_2614287_2df54e.png" />     <img class="bird" alt="" src="https://642303.freep.cn/642303/za/pngsucai_2614287_2df54e.png" />     <img class="player" alt="" src="https://pic.imgdb.cn/item/64a28a991ddac507ccde4215.png" title="播放/暂停" />     <img class="player" alt="" src="https://pic.imgdb.cn/item/64a28a071ddac507ccdd3b30.png" title="播放/暂停" /> </div>   <!-- 第三部分 :JS代码 -->   <script> //声明并获取待控制的元素集合变量 : vids 视频、players 小播、birds 图片飞鹰 var vids = mydiv.querySelectorAll('.vid'),     players = mydiv.querySelectorAll('.player'),     birds = mydiv.querySelectorAll('.bird');   //联动控制函数 var mState = () => {     mydiv.style.setProperty('--state', aud.paused ? 'paused' : 'running');     vids.forEach(vid => aud.paused ? vid.pause() : vid.play());     players.forEach(player => player.title = aud.paused ? '播放' : '暂停'); };   //audio空间三个监听事件 aud.oncanplay = aud.onplaying = aud.onpause = () => mState();   //小播点击事件 players.forEach(player => player.onclick = () => aud.paused ? aud.play() : aud.pause()); </script>

评分

4

查看全部评分

点评
回复

使用道具

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

LOGO旁边和耳环两朵花是控制按纽

三个泡泡是图片

玫瑰花视频和蝴蝶是两个视频
基本按老师原贴结构来的。

评分

3

查看全部评分

点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
 楼主| 发表于 2024-7-28 22:14 | 显示全部楼层
@雨声 @柒玥 亲们来瞧瞧这个贴子,跟着会不会简单一些。

评分

2

查看全部评分

点评
回复

使用道具

『默然守候』
一叶知秋 海洋之心 蝴蝶精灵 山间红叶 花漫千山 江湖之上 音画同行 中秋月圆 欢度国庆 雪花精灵 桃花朵朵 山高为峰 山外有山 猪事顺利 一生安柠 青恬时光 幸福莓满 心想事橙 桃气满满 梅开颜笑 心若葡提 大吉大荔 樱果相依 喜上莓梢 菜源滚滚 24 46 47 48 小青龙
发表于 2024-7-28 22:20 | 显示全部楼层
花简静 发表于 2024-7-28 22:14
@雨声 @柒玥 亲们来瞧瞧这个贴子,跟着会不会简单一些。

收到,爱你静宝,看完球赛我去摆弄图
点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
 楼主| 发表于 2024-7-28 22:23 | 显示全部楼层
雨声 发表于 2024-7-28 22:20
收到,爱你静宝,看完球赛我去摆弄图

好哒,几金了哈。。。
点评
回复

使用道具

*破姐小跟班*
一叶知秋 版主勋章 音画同行 山高为峰 山外有山 24 46 47 48 彩凤凰
发表于 2024-7-29 10:35 | 显示全部楼层
静静太好了,抄了你的作业
点评
回复

使用道具

*破姐小跟班*
一叶知秋 版主勋章 音画同行 山高为峰 山外有山 24 46 47 48 彩凤凰
发表于 2024-7-29 10:35 | 显示全部楼层
这会我要去接孩子下课了,静宝新周快乐!
点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
 楼主| 发表于 2024-7-29 16:19 | 显示全部楼层
清梦 发表于 2024-7-29 10:35
这会我要去接孩子下课了,静宝新周快乐!

好哒,先去忙哈
点评
回复

使用道具

一叶知秋 版主勋章 山高为峰 山外有山 樱果相依 24 46 47 48 闲花落
 楼主| 发表于 2024-7-29 16:19 | 显示全部楼层
清梦 发表于 2024-7-29 10:35
静静太好了,抄了你的作业

应该 的,一起玩哈。。
点评
回复

使用道具

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

本版积分规则

手机版|千山论坛

GMT+8, 2024-9-20 05:04

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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