-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
11 lines (11 loc) · 717 Bytes
/
Copy pathindex.js
File metadata and controls
11 lines (11 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
function start(){
document.querySelector(".initialImage").classList.toggle("title");
setTimeout(()=>{document.querySelector(".initialImage").classList.add("makeItSmall");},6000);
setTimeout(()=>{document.querySelector(".initialImage").style.cssText=" margin:0; width:80px;";},6000);
setTimeout(()=>{document.querySelector("#head").classList.add("changeHead");},6000);
setTimeout(()=>{document.querySelector("#head").style.cssText="font-size:4rem; transform:translate(-420px,-210px);";},10000);
setTimeout(()=>{document.querySelector(".smallcircle").classList.add("getCircle");},10000);
setTimeout(()=>{document.querySelector(".smallcircle").classList.add("rotate1");},13000);
}
function backCircle(){
}