-
Notifications
You must be signed in to change notification settings - Fork 1
/
carousel.html
131 lines (101 loc) · 4.81 KB
/
carousel.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<title>Webspiration Carousel</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="css/scrolling-nav.css">
<link rel="stylesheet" href="css/carouselV2.css">
<link rel="stylesheet" href="fonts/webfonts_Dagerotypos/Dagerotypos.css" type="text/css" charset="utf-8" />
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Webspiration Begins Here</h1>
<p>...</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Webspire Me!</a></p>
</div>
</div>
<div class="container">
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="false">
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="active item">
<iframe sandbox="allow-same-origin allow-scripts" seamless="seamless"
src="http://www.christopherkane.com/"
frameborder="0" scrolling="no" width="1140px" height="550px">
</iframe>
<div class="carousel-caption">
<a href="http://www.christopherkane.com/" target="_blank">
<span class="glyphicon glyphicon-globe" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="item">
<iframe sandbox="allow-same-origin allow-scripts" seamless="seamless"
src="http://www.mathildejacon.com/"
frameborder="0" scrolling="no" width="1140px" height="550px""></iframe>
<div class="carousel-caption">
<a href="http://www.mathildejacon.com/" target="_blank">
<span class="glyphicon glyphicon-globe" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="item">
<iframe sandbox="allow-same-origin allow-scripts" seamless="seamless"
src="http://goodgameclub.com/"
frameborder="0" scrolling="no" width="1140px" height="550px""></iframe>
<div class="carousel-caption">
<a href="http://goodgameclub.com//" target="_blank">
<span class="glyphicon glyphicon-globe" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="item">
<iframe sandbox="allow-same-origin allow-scripts" seamless="seamless"
src="http://p--m.co/"
frameborder="0" scrolling="no" width="1140px" height="550px""></iframe>
<div class="carousel-caption">
<a href="http://p--m.co/" target="_blank">
<span class="glyphicon glyphicon-globe" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="item">
<iframe sandbox="allow-same-origin allow-scripts" seamless="seamless"
src="http://madebyfieldwork.com/"
frameborder="0" scrolling="no" width="1140px" height="550px""></iframe>
<div class="carousel-caption">
<a href="http://madebyfieldwork.com/" target="_blank">
<span class="glyphicon glyphicon-globe" aria-hidden="true"></span>
</a>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Scrolling Nav JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/scrolling-nav.js"></script>
</body>
</html>