-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.3.html
More file actions
144 lines (116 loc) · 3.99 KB
/
index.3.html
File metadata and controls
144 lines (116 loc) · 3.99 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>tracking.js - color hello world</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<style>
.glyphicon {
margin-right: 5px;
}
.thumbnail {
margin-bottom: 20px;
padding: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.item.list-group-item {
float: none;
width: 100%;
background-color: #fff;
margin-bottom: 10px;
}
.item.list-group-item:nth-of-type(odd):hover,
.item.list-group-item:hover {
background: #428bca;
}
.item.list-group-item .list-group-image {
margin-right: 10px;
}
.item.list-group-item .thumbnail {
margin-bottom: 0px;
}
.item.list-group-item .caption {
width:400px;
padding: 9px 9px 0px 9px;
}
.item.list-group-item:nth-of-type(odd) {
background: #eeeeee;
}
.item.list-group-item:before,
.item.list-group-item:after {
display: table;
content: " ";
}
.item.list-group-item img {
float: left;
}
.item.list-group-item:after {
clear: both;
}
.list-group-item-text {
margin: 0 0 11px;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
$('#list').click(function (event) { event.preventDefault(); $('#products .item').addClass('list-group-item'); });
$('#grid').click(function (event) { event.preventDefault(); $('#products .item').removeClass('list-group-item'); $('#products .item').addClass('grid-group-item'); });
});
</script>
</head>
<body>
<div class="container">
<div class="well well-sm">
<strong>Display</strong>
<div class="btn-group">
<a href="#" id="list" class="btn btn-default btn-sm">
<span class="glyphicon glyphicon-th-list">
</span>List</a>
<a href="#" id="grid" class="btn btn-default btn-sm">
<span class="glyphicon glyphicon-th"></span>Grid</a>
</div>
</div>
<div id="products" class="row list-group">
<div class="item col-xs-4 col-lg-4">
<div class="thumbnail">
<div class="caption">
<h4 class="group inner list-group-item-heading">
Product title</h4>
<iframe src="https://bigpicture.bigmobile.com/creative/demo/tag/?tagid=4212&size=321x100" height="400px" width="100%"></iframe> </div>
</div>
</div>
<div class="item col-xs-4 col-lg-4">
<div class="thumbnail">
<div class="caption">
<h4 class="group inner list-group-item-heading">
Product title</h4>
<script src="http://engine.widespace.com/map/engine/dynamic?sid=a92f2a4c-eed1-11e6-85d6-021457a68677&forceAdId=78817" type="text/javascript"></script>
</div>
</div>
</div>
<div class="item col-xs-4 col-lg-4">
<div class="thumbnail">
<div class="caption">
<h4 class="group inner list-group-item-heading">
Product title</h4>
<iframe src="http://bigmobileid.com/demo/pokka2/preview/" height="400px" width="100%"></iframe>
</div>
</div>
</div>
<div class="item col-xs-4 col-lg-4">
<div class="thumbnail">
<div class="caption">
<h4 class="group inner list-group-item-heading">
Product title</h4>
<script src="http://engine.widespace.com/map/engine/dynamic?sid=a92f2a4c-eed1-11e6-85d6-021457a68677&forceAdId=78387" type="text/javascript"></script>
</div>
</div>
</div>
</div>
</div>
</body>
</html>