"Two column timeline - not responsive"
Bootstrap 3.1.0 Snippet by xrozix

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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="container">
<div class="page-header">
<h1 id="">Timeline</h1>
</div>
<div id="timeline"><div class="row timeline-movement timeline-movement-top">
<div class="timeline-badge timeline-future-movement" rel="tooltip" title="Publish article">
<a href="#" data-toggle="modal" data-target="#myModal">
<span class="glyphicon glyphicon-plus"></span>
</a>
</div>
<div class="timeline-badge timeline-filter-movement">
<a href="#">
<span class="glyphicon glyphicon-time"></span>
</a>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="false">
<div class="container" >
<div class="row">
<div class="col-sm-6 col-sm-offset-3 text-center" style="background: #FFFFFF; -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px; color: #000">
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Publish</legend>
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
#timeline {
list-style: none;
position: relative;
}
#timeline:before {
top: 0;
bottom: 0;
position: absolute;
content: " ";
width: 2px;
background-color: #000;
left: 50%;
margin-left: -1.5px;
}
#timeline .clearFix {
clear: both;
height: 0;
}
#timeline .timeline-badge {
color: #fff;
width: 50px;
height: 50px;
font-size: 1.2em;
text-align: center;
position: absolute;
top: 20px;
left: 50%;
margin-left: -25px;
background-color: #000;
z-index: 100;
border-top-right-radius: 50%;
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
border-bottom-left-radius: 50%;
}
#timeline .timeline-badge span.timeline-balloon-date-day {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
$(document).ready(function(){
var my_posts = $("[rel=tooltip]");
for(i=0;i<my_posts.length;i++){
the_post = $(my_posts[i]);
if(the_post.hasClass('invert')){
the_post.tooltip({ placement: 'left'});
the_post.css("cursor","pointer");
}else{
the_post.tooltip({ placement: 'rigt'});
the_post.css("cursor","pointer");
}
}
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: