css实现文字故障动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现文字故障动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> * { margin: 0; padding: 0; } body, html { width: 100%; height: 100%; background-color: black; } .wrapper { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; } .wrapper h1.glitch { color: white; font-family: sans-serif; font-weight: 800; position: relative; font-size: 100px; padding: 30px; } .wrapper h1.glitch::before, .wrapper h1.glitch::after { padding: 30px; color: white; content: "Glitch"; position: absolute; width: 100%; height: 100%; background: black; overflow: hidden; top: 0; } .wrapper h1.glitch::before { left: 3px; text-shadow: -2px 0 red; animation-name: glitch-animation-1; animation-duration: 2s; animation-timing-function: linear; animation-delay: 0s; animation-iteration-count: infinite; animation-direction: reverse-alternate; } .wrapper h1.glitch::after { left: -3px; text-shadow: -2px 0 blue; animation-name: glitch-animation-2; animation-duration: 2s; animation-timing-function: linear; animation-delay: 0s; animation-iteration-count: infinite; animation-direction: reverse-alternate; } @keyframes glitch-animation-1 { 0% { clip: rect(42px, 350px, 117px, 30px); } 5% { clip: rect(122px, 350px, 19px, 30px); } 10% { clip: rect(39px, 350px, 40px, 30px); } 15% { clip: rect(129px, 350px, 34px, 30px); } 20% { clip: rect(76px, 350px, 31px, 30px); } 25% { clip: rect(85px, 350px, 10px, 30px); } 30% { clip: rect(57px, 350px, 107px, 30px); } 35% { clip: rect(113px, 350px, 61px, 30px); } 40% { clip: rect(128px, 350px, 136px, 30px); } 45% { clip: rect(60px, 350px, 118px, 30px); } 50% { clip: rect(48px, 350px, 33px, 30px); } 55% { cl.........完整代码请登录后点击上方下载按钮下载查看
网友评论0