1 Star 0 Fork 0

FirePotatoBox/HTML

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
聚光灯效果.html 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
FirePotatoBox 提交于 2020-06-02 18:32 . first
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>聚光灯效果</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background: #222;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
h1 {
color: #333;
font-size: 8rem;
position: relative;
}
h1::after {
content: "YOSEEN";
color: transparent;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: -webkit-linear-gradient( left, #c23616, #192a56, #00d2d3, yellow, #60214F, #2e86de, #4cd137, #e84118);
background-clip: text;
-webkit-background-clip: text;
clip-path: circle(100px at 0% 50%);
-webkit-clip-path: circle(100px at 0% 50%);
animation: light 5s infinite;
}
@keyframes light {
0% {
clip-path: circle(100px at 0% 50%);
-webkit-clip-path: circle(100px at 0% 50%);
}
50% {
clip-path: circle(100px at 100% 50%);
-webkit-clip-path: circle(100px at 100% 50%);
}
100% {
clip-path: circle(100px at 0% 50%);
-webkit-clip-path: circle(100px at 0% 50%);
}
}
</style>
</head>
<body>
<h1>YOSEEN</h1>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/FirePotatoBox/HTML.git
git@gitee.com:FirePotatoBox/HTML.git
FirePotatoBox
HTML
HTML
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385