Team:UCLondon/Templates/timeline-struct
From 2012e.igem.org
(Difference between revisions)
(63 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
<html> | <html> | ||
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> | <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script> | ||
- | <script src=" | + | <script src="https://dl.dropbox.com/u/3703109/igeme/js/jquery.timelinr-0.9.51.js" type="text/javascript"></script> |
Line 7: | Line 7: | ||
<div id="timeline" class="</html>{{{class}}}<html>"> | <div id="timeline" class="</html>{{{class}}}<html>"> | ||
<ul id="dates"> | <ul id="dates"> | ||
- | < | + | <!-- Stuff goes here --> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
</ul> | </ul> | ||
<ul id="issues"> | <ul id="issues"> | ||
- | < | + | <!-- stuff goes here--> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
</ul> | </ul> | ||
- | <a href="#" id=" | + | <!--<div style="clear:both; height:1px;"></div>--> |
- | <a href="#" id=" | + | <a href="#" id="prev"><</a> <!-- optional --> |
+ | <a href="#" id="next">></a> <!-- optional --> | ||
</div> | </div> | ||
Line 50: | Line 21: | ||
#timeline{ | #timeline{ | ||
- | width: | + | width:600px; |
+ | margin:auto !important; | ||
overflow: hidden; | overflow: hidden; | ||
+ | position: relative; | ||
} | } | ||
#dates { | #dates { | ||
- | width: | + | width:600px; |
height: 60px; | height: 60px; | ||
overflow: hidden; | overflow: hidden; | ||
Line 81: | Line 54: | ||
#issues { | #issues { | ||
- | width: | + | width: 600px; |
- | height: | + | height: 300px; |
overflow: hidden; | overflow: hidden; | ||
} | } | ||
Line 88: | Line 61: | ||
/* check here */ | /* check here */ | ||
#issues li { | #issues li { | ||
- | width: | + | width:600px; |
- | height: | + | height: 300px; |
list-style: none; | list-style: none; | ||
float: left; | float: left; | ||
+ | position:relative; | ||
+ | left: -30px; | ||
+ | padding-left: 0px; | ||
+ | padding-right:0px; | ||
} | } | ||
- | + | #issues li.selected img { | |
-webkit-transform: scale(1.1,1.1); | -webkit-transform: scale(1.1,1.1); | ||
-moz-transform: scale(1.1,1.1); | -moz-transform: scale(1.1,1.1); | ||
Line 99: | Line 76: | ||
-ms-transform: scale(1.1,1.1); | -ms-transform: scale(1.1,1.1); | ||
transform: scale(1.1,1.1); | transform: scale(1.1,1.1); | ||
+ | } | ||
+ | |||
+ | |||
+ | #issues li img { | ||
+ | float: left; | ||
+ | margin: 10px 30px 10px 50px; | ||
+ | background: transparent; | ||
+ | -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE 8 */ | ||
+ | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);/* IE 6 & 7 */ | ||
+ | zoom: 1; | ||
+ | -webkit-transition: all 2s ease-in-out; | ||
+ | -moz-transition: all 2s ease-in-out; | ||
+ | -o-transition: all 2s ease-in-out; | ||
+ | -ms-transition: all 2s ease-in-out; | ||
+ | transition: all 2s ease-in-out; | ||
+ | -webkit-transform: scale(0.7,0.7); | ||
+ | -moz-transform: scale(0.7,0.7); | ||
+ | -o-transform: scale(0.7,0.7); | ||
+ | -ms-transform: scale(0.7,0.7); | ||
+ | transform: scale(0.7,0.7); | ||
} | } | ||
+ | #issues h1 { color: #497567; font-size:17pt; font-family: Helvetica, sans-serif; } | ||
+ | |||
+ | #issues li p {height:auto !important; width: 580px; padding-left:0px;} | ||
+ | .participants {display: none;} | ||
+ | |||
+ | |||
+ | #prev, #next { color: #757575; font-size:25pt; } | ||
Line 137: | Line 141: | ||
*/ | */ | ||
+ | |||
$(function(){ | $(function(){ | ||
- | $().timelinr() | + | $().timelinr(); |
}); | }); | ||
+ | // hack to increase the width of float element so the last item will display. | ||
+ | setTimeout((function() {$('#issues').css('width', parseInt($('#issues').css('width').replace('px', '')) + 500 +"px" ); }), 1500); | ||
+ | |||
+ | //$('#issues').css('width', parseInt($('#issues').css('width').replace('px', '')) + 3000 +"px" ); | ||
+ | |||
+ | //$('#issues li').css('width', '550px'); | ||
+ | |||
+ | |||
}); | }); | ||
+ | |||
+ | |||
+ | |||
Latest revision as of 14:45, 20 January 2013