本文共 975 字,大约阅读时间需要 3 分钟。
按下右侧的“点击预览”按钮可以在当前页面预览,点击链接可以全屏预览。
此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。
请用 chrome, safari, edge 打开观看。
每日前端实战系列的全部源代码请从 github 下载:
定义 dom,容器中有一段文本:
<p>thanks</p>
居中显示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black;}
定义文字样式:
p { font-size: 20vw; color: white; font-family: sans-serif; text-transform: uppercase; font-weight: bold;}
设置彩虹背景:
p { background-image: linear-gradient( to right, orangered, orange, gold, lightgreen, cyan, dodgerblue, mediumpurple, hotpink, orangered); background-size: 110vw;}
定义动画效果:
p { animation: sliding 30s linear infinite;}@keyframes sliding { to { background-position: -2000vw; }}
最后,把彩虹背景移到文字下面:
p { -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
大功告成!
原文地址:https://segmentfault.com/a/1190000015352436转载地址:http://hbjla.baihongyu.com/