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
1// Wrap every letter in a span
2var textWrapper = document.querySelector('.ml3');
3textWrapper.innerHTML = textWrapper.textContent.replace(/\S/g, "<span class='letter'>$&</span>");
4
5anime.timeline({loop: true})
6 .add({
7 targets: '.ml3 .letter',
8 opacity: [0,1],
9 easing: "easeInOutQuad",
10 duration: 2250,
11 delay: (el, i) => 150 * (i+1)
12 }).add({
13 targets: '.ml3',
14 opacity: 0,
15 duration: 1000,
16 easing: "easeOutExpo",
17 delay: 1000
18 });