2025年4月3日 星期四 乙巳(蛇)年 正月初四 设为首页 加入收藏
rss
您当前的位置:首页 > 计算机 > 编程开发 > Html+Div+Css(前端)

CSS聚光灯特效

时间:08-26来源:作者:点击数:21

CSS聚光灯特效

  • <h1 data-spotlight="CodingStartup!">CodingStartup</h1>
  • html {
  • font-size: 15px;
  • }
  • body {
  • background-color: #222;
  • display: flex;
  • justify-content: center;
  • align-items: center;
  • min-height: 100vh;
  • }
  • h1 {
  • color: #333;
  • font-family: Helvetica;
  • margin: 0;
  • padding: 0;
  • font-size: 8rem;
  • letter-spacing: -0.3rem;
  • position: relative;
  • }
  • h1::after {
  • content: attr(data-spotlight);
  • color: transparent;
  • position: absolute;
  • top: 0;
  • left: 0;
  • -webkit-clip-path: ellipse(100px 100px at 0% 50%);
  • clip-path: ellipse(100px 100px at 0% 50%);
  • animation: spotlight 5s infinite;
  • background-image: url(https://images.unsplash.com/photo-1579547621869-0ddb5f237392?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80);
  • background-size: 150%;
  • background-position: center center;
  • -webkit-background-clip: text;
  • background-clip: text;
  • }
  • @keyframes spotlight {
  • 0% {
  • -webkit-clip-path: ellipse(100px 100px at 0% 50%);
  • clip-path: ellipse(100px 100px at 0% 50%);
  • }
  • 50% {
  • -webkit-clip-path: ellipse(100px 100px at 100% 50%);
  • clip-path: ellipse(100px 100px at 100% 50%);
  • }
  • 100% {
  • -webkit-clip-path: ellipse(100px 100px at 0% 50%);
  • clip-path: ellipse(100px 100px at 0% 50%);
  • }
  • }
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门