-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_1.html
185 lines (172 loc) · 7.78 KB
/
index_1.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html>
<head>
<title>Heart Animation</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/animate.css">
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="assets/js/wow.js"></script>
<style>
li{
list-style: none;
margin: 30px 0;
}
#home .item{
height: 520px;
margin: 30px 0;
background-size: cover;
}
#profile .item{
height: 520px;
margin: 30px 0;
border: 1px solid #f5f5f5;
background: greenyellow;
}
#messages .item{
height: 520px;
margin: 30px 0;
border: 1px solid #f5f5f5;
background: blueviolet;
}
.tab1{
background: red;
padding: 10px;
}
.tab2{
background: greenyellow;
padding: 10px;
}
.tab3{
background: orange;
padding: 10px;
}
</style>
</head>
<body>
<section>
<div class="container">
<br /><br /><br /><br /><br />
<div class="wow fadeInUp">
<center>scroll down...</center><br />
<center>scroll down...</center><br />
<center>scroll down...</center>
</div>
<br /><br /><br /><br /><br />
<div class="wow fadeInUp">
<center>scroll down...</center><br />
<center>scroll down...</center><br />
<center>scroll down...</center>
</div>
<br /><br /><br /><br /><br />
<div class="wow fadeInUp">
<center>scroll down...</center><br />
<center>scroll down...</center><br />
<center>scroll down...</center>
</div>
<br /><br /><br /><br /><br />
<div class="wow fadeInUp">
<center>scroll down...</center><br />
<center>scroll down...</center><br />
<center>scroll down...</center>
</div>
<br /><br /><br /><br /><br />
<div class="wow fadeInUp">
<center>scroll down...</center><br />
<center>scroll down...</center><br />
<center>scroll down...</center>
</div>
<br /><br /><br /><br /><br />
<div class="wow fadeInUp">
<center>scroll down...</center><br />
<center>scroll down...</center><br />
<center>scroll down...</center>
</div>
<div>
<br /><br /><br /><br />
<!-- Nav tabs -->
<div class="row">
<div class="tab1 col-sm-4 text-center">tab 1</div>
<div class="tab2 col-sm-4 text-center">tab 2</div>
<div class="tab3 col-sm-4 text-center">tab 3</div>
</div>
<!-- Tab panes -->
<div class="row">
<div id="home">
<ul class="row">
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.8s"
style="background:url(images/auction-1.jpg) 50% 50% no-repeat">
</div>
</li>
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.7s"
style="background:url(images/auction-2.jpg) 50% 50% no-repeat">
</div>
</li>
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.6s"
style="background:url(images/auction-3.jpg) 50% 50% no-repeat">
</div>
</li>
</ul>
</div>
<div id="profile" style="display: none;">
<ul class="row">
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.8s"></div>
</li>
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.7s"></div>
</li>
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.6s"></div>
</li>
</ul>
</div>
<div id="messages" style="display: none;">
<ul class="row">
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.8s"></div>
</li>
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.7s"></div>
</li>
<li class="col-sm-4">
<div class="item wow fadeInLeftBig" data-wow-duration="0.3s" data-wow-delay="0.6s"></div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
</div>
</section>
<script>
new WOW().init();
$(function(){
$(".tab1").on("click", function(){
wow = new WOW(
{
boxClass: 'wow', // default
animateClass: 'fadeOutRightBig', // default
offset: 0, // default
mobile: true, // default
live: true // default
}
)
wow.init();
// $("#home").hide(); $("#profile").show();
});
})
</script>
</body>
</html>