-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimationAudio.html
More file actions
81 lines (80 loc) · 1.4 KB
/
animationAudio.html
File metadata and controls
81 lines (80 loc) · 1.4 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<Script src="jquery.js"></script>
<Style>
*{
margin:0px;
padding:0px;
}
#cont{
margin:auto;
margin-top:250px;
width:60px;
height:50px;
padding:15px;
position:relative;
text-align:center
}
#cont div{
position:absolute;
left:15px;
}
#div1{
width:15px;
height:15px;
border:1px solid black;
border-bottom:0px;
border-left:0px;
border-radius:0px 15px 0px 0px;
transform:rotate(45deg);
top:30px;
display:none;
}
#div2{
width:30px;
height:30px;
border:1px solid black;
border-bottom:0px;
border-left:0px;
border-radius:0px 25px 0px 0px;
transform:rotate(45deg);
left:5px;
top:24px;
display:none;
}
#div3{
display:none;
width:50px;
height:50px;
border:1px solid black;
border-bottom:0px;
border-left:0px;
border-radius:0px 45px 0px 0px;
transform:rotate(45deg);
left:30px;
}
</style>
<div id="cont">
<div id="div1"></div>
<Div id="div2"></div>
<Div id="div3"></div>
</div>
<Script>
function x1(){
var div1=document.getElementById("div1");
var div2=document.getElementById("div2");
var div3=document.getElementById("div3");
setTimeout(function(){
div1.style.display="inline-block";
setTimeout(function(){
div2.style.display="inline-block";
setTimeout(function(){
div3.style.display="inline-block";
setTimeout(function(){
$("#cont div").css({"display":"none"});
setTimeout(function(){x1()},100)
},800);
},800);
},800)
},800);
}
x1();
</script>