-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnimationfunction.html
67 lines (57 loc) · 1.61 KB
/
Animationfunction.html
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ANIMATION GRADIENT SHADOW</title>
<style>
* {
box-sizing: border-box;
}
body {
background: #222;
}
#box {
width: 400px;
height: 250px;
background: #262626;
position: relative;
margin: 50px;
padding:30px;
color: white;
}
#box::after ,
#box::before{
content: " ";
width: calc(100% + 4px);
height: calc(100% + 4px);
background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000, #fb0094, #0000ff, #00ff00, #ffff00, #ff00);
background-size: 400%;
position: absolute;
top: -2px;
left: -2px;
z-index: -1;
animation: ihsan 10s linear infinite alternate;
}
#box::after {
filter: blur(30px);
}
@keyframes ihsan {
0% {
background-position: 0 0;
}
50% {
background-position: 100% 0;
}
100% {
background-position: 0 0;
}
}
</style>
</head>
<body>
<div id="box">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere nesciunt ut vitae reprehenderit facilis est sit ad dicta enim in iste assumenda sunt numquam, repudiandae aperiam quibusdam placeat itaque maiores!
</div>
</body>
</html>