-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImageChanger.html
64 lines (57 loc) · 2.63 KB
/
ImageChanger.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>image changer</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<style>
h1{
text-align: center;
color:yellow;
text-shadow: 2px 2px 2px red;
text-transform:uppercase;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<h1 >Ready for image change</h1>
<!--
T
-->
<script ">
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/24/265/239/digital-art-drawing-painting-landscape-wallpaper-preview.jpg')"
},1000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/990/547/605/digital-art-futuristic-city-car-artwork-wallpaper-preview.jpg')"
},2000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/30/586/460/artwork-fantasy-art-digital-art-forest-wallpaper-preview.jpg')"
},3000)
setTimeout(()=>{
document.querySelector('h1').style.display = 'none';
},3000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/24/265/239/digital-art-drawing-painting-landscape-wallpaper-preview.jpg')"
},4000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/133/969/139/artwork-nature-landscape-fantasy-art-wallpaper-preview.jpg')"
},5000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/295/653/112/digital-art-asian-architecture-fantasy-art-town-wallpaper-preview.jpg')"
},6000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/646/361/125/middle-earth-shadow-of-mordor-eagle-video-games-fire-wallpaper-preview.jpg')"
},7000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/384/350/430/digital-art-artwork-cyber-cyberpunk-neon-hd-wallpaper-preview.jpg')"
},8000)
setTimeout(()=>{
document.body.style.backgroundImage="url('https://c4.wallpaperflare.com/wallpaper/189/144/893/cyber-science-fiction-digital-art-concept-art-cyberpunk-hd-wallpaper-preview.jpg')"
},9000)
</script>
<script></script>
</body>
</html>