-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel.html
35 lines (35 loc) · 1.14 KB
/
model.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
<html>
<head>
<title>Weather</title>
<script language="JavaScript">
var num = 1
img = new Image ()
function slideshow() {
num += 1
if(num == 14) {
num = 1
}
img.src = "img/" + num + ".jpg";
document.mypic.src = eval("img.src")
timer = setTimeout('change_img()', 5000);
}
function change_img() {
window.clearInterval(timer);
slideshow();
}
</script>
<style type="text/css">
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body bgcolor="#000000">
<video width="1080" height="738" autoplay="autoplay" controls loop>
<source src="TAILYN_Plant_Tour_2015.mp4" type="video/mp4">
<source src="TAILYN_Plant_Tour_2015.ogg" type="video/ogg">
Your browser does not support the video tag.
<!-- <iframe width="1080" height="738" src="https://www.youtube.com/embed/WOD0jNGaW3s?rel=0&autoplay=1&playlist=WOD0jNGaW3s" frameborder="0" allowfullscreen></iframe>-->
</body>
</html>