-
Notifications
You must be signed in to change notification settings - Fork 104
/
index5.html
109 lines (98 loc) · 3.26 KB
/
index5.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>iView™ v2.0</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/iview.css" />
<link rel="stylesheet" href="css/skin 5/style.css" />
<script src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/raphael-min.js"></script>
<script type="text/javascript" src="js/jquery.easing.js"></script>
<script src="js/iview.js"></script>
<script>
$(document).ready(function(){
$('#iview').iView({
strips: 20,
blockCols: 20,
blockRows: 3,
pauseTime: 7000,
pauseOnHover: true,
directionNavHoverOpacity: 0,
timer: "Bar",
timerDiameter: 120,
timerPadding: 3,
timerStroke: 4,
timerBarStroke: 0,
timerColor: "#0F0",
timerPosition: "bottom-right"
});
$('#iview2').iView({
pauseTime: 5000,
pauseOnHover: true,
directionNavHoverOpacity: 0,
controlNav: true,
controlNavNextPrev: false,
controlNavTooltip: false,
timer: "360Bar",
timerDiameter: 30,
timerPadding: 3,
timerStroke: 4,
timerBarStroke: 0,
timerColor: "#0F0",
timerPosition: "top-right"
});
});
</script> </head>
<body>
<div id="cont">
<div id="header">
<div class="container">
<h1><a href="<?=$siteurl?>">iView™</a></h1>
<div id="nav">
<ul>
<li><a href="index.html">Regular</a></li>
<li><a href="index2.html">Multiple</a></li>
<li><a href="index3.html">Regular with API</a></li>
<li><a href="index4.html">Responsive</a></li>
<li class="active"><a href="index5.html">Banner</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div id="iview" class="iview">
<div data-iview:image="photos/728x90_1.jpg"></div>
<div data-iview:image="photos/728x90_2.jpg"></div>
<div data-iview:image="photos/728x90_3.jpg"></div>
</div>
<div id="iview2" class="iview">
<div data-iview:image="photos/300x600_1.jpg"></div>
<div data-iview:image="photos/300x600_2.jpg"></div>
<div data-iview:image="photos/300x600_3.jpg"></div>
</div>
</div>
<div class="copy">Made by <a href="http://iprodev.com/">Hemn Chawroka</a>.<br>Copyright © 2012. All rights reserved.</div>
</div>
<div id="background-image">
<img src="img/bckg.jpg" width="1820" height="1024" />
</div>
<script type="text/javascript" src="js/jquery.fullscreen.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#background-image").fullscreenBackground();
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30854466-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>