"time informer"
Bootstrap 3.3.0 Snippet by irinashuvalova

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="time-container">
<div class="container">
<div class="times-wrapper clearfix">
<i class="icon-time icon-clock"></i>
<i class="icon-time icon-earth"></i>
<div class="time-city-wrapper" id="timeInformer1">
<p class="city"></p>
<p class="city-time"></p>
</div>
<div class="time-city-wrapper" id="timeInformer2">
<p class="city"></p>
<p class="city-time"></p>
</div>
<div class="time-city-wrapper" id="timeInformer3">
<p class="city"></p>
<p class="city-time"></p>
</div>
<div class="time-city-wrapper" id="timeInformer4">
<p class="city"></p>
<p class="city-time"></p>
</div>
</div>
</div>
</div>
<div class="last-section"></div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.time-container {
background: @timeBg;
height: 44px;
padding-top: 7px;
.box-sizing;
.times-wrapper {
display: inline-block;
width: auto;
margin-left: 373px;
}
.icon-time {
display: block;
height: 29px;
width: 29px;
float: left;
}
.icon-clock {
background: @clockIcon;
margin-right: 10px;
}
.icon-earth {
background: @earthIcon;
margin-right: 5px;
}
.time-city-wrapper {
display: block;
float: left;
.box-sizing;
line-height: 30px;
&:after {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
var timeInformer = (function () {
var date = null,
data = {},
informersCount = 4;
return {
initInformer: function () {
timeInformer.initDate();
for (var i = 0; i < informersCount; i++) {
timeInformer.initElements(data[i].GMT, i);
}
},
setData: function(response) {
data = response;
},
initDate: function () {
date = moment(new Date()).utc();
},
update: function () {
date = moment(new Date()).utc();
for (var i = 0; i < informersCount; i++) {
timeInformer.updateElements(data[i].GMT, i);
}
},
initElements: function (gmt, i) {
$('#timeInformer' + (i + 1) + ' .city').html(data[i].Title);
$('#timeInformer' + (i + 1) + ' .city-time').html(date.add(gmt, 'h').format('HH:mm:ss'));
date.add(-(gmt), 'h');
},
updateElements: function (gmt, i) {
$('#timeInformer' + (i + 1) + ' .city-time').html(date.add(gmt, 'h').format('HH:mm:ss'));
date.add(-(gmt), 'h');
}
}
})();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: