-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 759 Bytes
/
index.html
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>ImagePlayer</title>
<meta charset='utf-8' />
<script src='imageplayer.min.js'></script>
</head>
<body style='background-color: #ffffff;'>
<div id='ipDiv'></div>
<script>
ip = new ImagePlayer({
element: 'ipDiv',
images: [
'example/file000.jpg',
'example/file001.jpg',
'example/file002.jpg',
'example/file003.jpg',
'example/file004.jpg',
'example/file005.jpg',
'example/file006.jpg',
'example/file007.jpg',
'example/file008.jpg',
'example/file009.jpg'
],
autoplay: 0,
interval: 150,
icondir: 'images'
});
</script>
</body>
</html>