Team:Calgary/Sandbox

From 2011.igem.org

(Difference between revisions)
 
(9 intermediate revisions not shown)
Line 12: Line 12:
$(function() {
$(function() {
-
   $("#accordion").accordion();
+
  $(".button").button();
 +
   $("#date").datepicker();
 +
 
 +
  // bouncy menu
 +
    $(".sidebar ul li ul li, .menuBar a").mouseover(function(){ 
 +
        $(this).stop().animate({paddingLeft:'30px'},{queue:false, duration:600, easing: 'easeOutBounce'}) 
 +
    }); 
 +
    $(".sidebar ul li ul li, .menuBar a").mouseout(function(){ 
 +
        $(this).stop().animate({paddingLeft:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'}) 
 +
    }); 
 +
 
});
});
</script>
</script>
Line 28: Line 38:
     </div>
     </div>
-
<div id="accordion">
+
  <span class="button">jq Button</span>
-
    <h3><a href="#">First header</a></h3>
+
  <input type='text' id='date' />
-
    <div>First content</div>
+
-
    <h3><a href="#">Second header</a></h3>
+
-
    <div>Second content</div>
+
-
</div>
+
   </div>
   </div>

Latest revision as of 00:16, 13 June 2011

Background

This section outlines the nature of the problem we are trying to solve, why it matters, and the strategy we are using to contribute to an eventual solution.

Abstract

This is the abstract of the project.

jq Button