1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| *{ margin : 0; padding: 0;
}
body{ background-color: #222; display: flex; justify-content: center; align-items: center; height: 100vh; }
h1{ color: #333; text-transform: uppercase; font-size: 112px; position: relative; }
h1::after{ content: "hello world"; color: transparent; position: absolute; top: 0; left: 0; background: linear-gradient(to right, #ff59b3, #fe0000, #ffff01, #40d1d2, #8b059f7d); background-clip: text; -webkit-background-clip: text; clip-path: circle(100px at 0% 50%); animation: light 5s infinite; }
@keyframes light{ 0%{ clip-path: circle(100px at 0% 50%); } 50%{ clip-path: circle(100px at 100% 50%); } 100%{ clip-path: circle(100px at 0% 50%); } }
|