Switch to full style
JQuery Examples
Post a reply

slide down using JQuery

Mon Dec 31, 2012 12:28 am

slide down using JQuery
Code:

<html>
<
head>
<
title>Slide Down animation</title>
 
<!--
 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
 Note you can download the JQuery package instead of using Google version. --> 
<script src="jquery-1.8.3.js"></script>
<script> 
$(document).ready(function(){
  $("#div2").click(function(){
    $("#div1").slideDown(4000);
  });
    $("#div1").click(function(){
    $("#div3").slideDown(4000);
  });
  $("#stop").click(function(){
    $("#div1").stop();
  });
});
</script>
 
<style type="text/css"> 
#divWrap{
  width:100px;
  height:400px;
  background-color:#15fe11;
  border:solid 1px #1214c3;
}
#div1,#div2,#div3
{
padding:5px;
text-align:center;
 
border:solid 1px #c3c3c3;
}
#div1,#div3
{
padding:20px;
display:none;
}
</style>
</head>
<body>
 
<div id="divWrap">
<div id="div2"><a href="#">Show Hidden</a></div>
<div id="div1"><a href="#">Link1</a></div>
<div id="div3"><a href="#">Link2</a></div>
</div>
<button class="stop">Stop Div1</button>
</body>
</html>






Post a reply
  Related Posts  to : slide down using JQuery
 Slide UP-Down Chaining     -  
 image slide show     -  
 java slide not comming up     -  
 html slide show images     -  
 Slide automatically-specific speed to a determined position     -  
 JQuery Animations     -  
 accordion using JQuery     -  
 How to start JQuery     -  
 Using firebug with JQuery     -  
 navigation menu using JQuery     -  

Topic Tags

JQuery Slide