摘要:效果预览按下右侧的点击预览按钮在当前页面预览,点击链接全屏预览。可交互视频教程此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。
效果预览
按下右侧的“点击预览”按钮在当前页面预览,点击链接全屏预览。
https://codepen.io/zhang-ou/pen/ELWMLr
可交互视频教程此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。
请用 chrome, safari, edge 打开观看。
https://scrimba.com/c/cqrNEsm
源代码下载请从 github 下载。
https://github.com/comehope/front-end-daily-challenges/tree/master/009-aimed-button-effects
代码解读定义 dom,容器中包含 5 个 span,第 1 个是按钮文字,另 4 个用来修饰:
BUTTON
居中显示:
html, body { height: 100%; display: flex; align-items: center; justify-content: center; background-color: black; color: silver; }
设置文字样式:
.box { width: 9em; height: 3em; font-size: 30px; text-align: center; line-height: 3em; letter-spacing: 0.2em; font-family: sans-serif; }
画出瞄准镜中间的圆圈:
.box { position: relative; } .box::after { content: ""; position: absolute; width: 3em; height: 3em; border: 1px solid red; border-radius: 50%; left: 3em; }
画出瞄准镜的十字坐标线:
.box span:not(:first-child) { position: absolute; background-color: red; } .box span.top, .box span.bottom { width: 1px; height: 3em; left: 50%; } .box span.top { top: -3em; } .box span.bottom { bottom: -3em; } .box span.left, .box span.right { width: 3em; height: 1px; top: 50%; } .box span.left { left: 0; } .box span.right { right: 0; }
定义瞄准动画:
@keyframes aim { from { filter: opacity(0.2); } to { filter: opacity(0.8); } }
应用瞄准动画到瞄准镜上:
.box::after { filter: opacity(0); } .box span:not(:first-child) { filter: opacity(0); } .box:hover::after, .box:hover span:not(:first-child) { animation: aim 1s linear infinite alternate; }
最后,为容器设置从模糊到清晰的缓动效果:
.box { filter: blur(2px); transition: 0.5s; } .box:hover { filter: blur(0.2px); }
大功告成!
知识点:not https://developer.mozilla.org/en-US/docs/Web/CSS/:not
:first-child https://developer.mozilla.org/en-US/docs/Web/CSS/:first-child
filter functions https://developer.mozilla.org/en-US/docs/Web/CSS/filter#Functions
animation-direction https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/52270.html
摘要:效果预览按下右侧的点击预览按钮在当前页面预览,点击链接全屏预览。可交互视频教程此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。 showImg(https://segmentfault.com/img/bVbb1Vv?w=500&h=500); 效果预览 按下右侧的点击预览按钮在当前页面预览,点击链接全屏预览。 https://codepen.io/zhang-ou/pen/...
摘要:过往项目年月份项目汇总共个项目年月份发布的项目前端每日实战专栏每天分解一个前端项目,用视频记录编码过程,再配合详细的代码解读,是学习前端开发的活的参考书频演示如何用纯创作一种按钮被瞄准的交互特效视频演示如何用纯创作一个同心圆弧旋转特效视频演 过往项目 2018 年 4 月份项目汇总(共 8 个项目) 2018 年 5 月份发布的项目 《前端每日实战》专栏每天分解一个前端项目,用视频记录...
摘要:过往项目年月份项目汇总共个项目年月份发布的项目前端每日实战专栏每天分解一个前端项目,用视频记录编码过程,再配合详细的代码解读,是学习前端开发的活的参考书频演示如何用纯创作一种按钮被瞄准的交互特效视频演示如何用纯创作一个同心圆弧旋转特效视频演 过往项目 2018 年 4 月份项目汇总(共 8 个项目) 2018 年 5 月份发布的项目 《前端每日实战》专栏每天分解一个前端项目,用视频记录...
阅读 867·2021-10-13 09:39
阅读 1455·2021-10-11 10:57
阅读 2524·2019-08-26 13:53
阅读 2512·2019-08-26 12:23
阅读 3651·2019-08-23 18:30
阅读 3713·2019-08-23 18:08
阅读 2506·2019-08-23 18:04
阅读 2940·2019-08-23 16:28