1a {
2 /* Same as before */
3 background: linear-gradient(to right, midnightblue, midnightblue 50%, royalblue 50%);
4}
1<!DOCTYPE html>
2<html>
3<head>
4<style>
5div {
6 width: 100px;
7 height: 100px;
8 background-color: red;
9 position: relative;
10 animation: myfirst 5s linear 2s infinite alternate;
11}
12@keyframes myfirst {
13 0% {background-color:red; left:0px; top:0px;}
14 25% {background-color:yellow; left:200px; top:0px;}
15 50% {background-color:blue; left:200px; top:200px;}
16 75% {background-color:green; left:0px; top:200px;}
17 100% {background-color:red; left:0px; top:0px;}
18}
19</style>
20</head>
21<body>
22
23<p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p>
24
25<div><p>you can add text in this box or anithing else like a pictrue</p></div>
26
27</body>
28</html>
29
1a {
2 /* Same as before */
3 background-clip: text;
4 -webkit-background-clip: text;
5 -webkit-text-fill-color: transparent;
6 background-size: 200% 100%;
7 background-position: 100%;
8}
1// Wrap every letter in a span
2var textWrapper = document.querySelector('.ml6 .letters');
3textWrapper.innerHTML = textWrapper.textContent.replace(/\S/g, "<span class='letter'>$&</span>");
4
5anime.timeline({loop: true})
6 .add({
7 targets: '.ml6 .letter',
8 translateY: ["1.1em", 0],
9 translateZ: 0,
10 duration: 750,
11 delay: (el, i) => 50 * i
12 }).add({
13 targets: '.ml6',
14 opacity: 0,
15 duration: 1000,
16 easing: "easeOutExpo",
17 delay: 1000
18 });