forked from vtimbuc/demo-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·59 lines (46 loc) · 1.83 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>UOU Apps</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<script>if ( top !== self ) top.location.replace( self.location.href );</script>
</head>
<body>
<!-- <body class="bottom-switcher"> -->
<!-- Iframe -->
<div class="item-demo-wrapper">
<iframe class="item-demo-iframe" frameborder="0" noresize="noresize"></iframe>
</div>
<!-- Switcher -->
<header class="switcher-bar clearfix">
<a href="http://uouapps.com" class="logo" title="UOU Apps">
<img src="img/logo.png" alt="">
<!-- UOU Apps -->
</a> <!-- end .logo -->
<a href="#" class="items-toggle-btn" title="Select a Product">Select a Product</a>
<a href="#" class="remove-frame-btn"><i class="fa fa-times"></i><span>Remove Frame</span></a>
<div class="buy-now">
<a href="#" class="buy-now-btn"><i class="fa fa-shopping-cart"></i>Buy Now</a>
</div>
<ul class="viewports">
<li class="active"><a href="#" data-size="100%"><i class="fa fa-desktop"></i></a></li>
<li><a href="#" data-size="768px"><i class="fa fa-tablet"></i></a></li>
<li><a href="#" data-size="380px"><i class="fa fa-mobile"></i></a></li>
</ul> <!-- end .viewports -->
</header> <!-- end .switcher-bar -->
<!-- Carousel -->
<div class="switcher-carousel">
<div class="carousel-wrapper"></div>
</div>
<!-- Scripts -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/libs/owl.carousel.min.js"></script>
<script src="items.js"></script>
<script src="js/switcher.min.js"></script>
</body>
</html>