Team:Calgary/Sandbox

From 2011.igem.org

(Difference between revisions)
 
(8 intermediate revisions not shown)
Line 13: Line 13:
$(function() {
$(function() {
   $(".button").button();
   $(".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 29: Line 39:
   <span class="button">jq Button</span>
   <span class="button">jq Button</span>
 +
  <input type='text' id='date' />
   </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