Total members 11889 |It is currently Thu Mar 28, 2024 10:35 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Sliding Up/ Down - Chaining
html code
<html>
<head>
<title>Slide UP-Down Chaining 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").slideUp(2000)
      .slideDown(2000);
  });
    $("#div1").click(function(){
    $("#div3").slideUp(2000)
      .slideDown(2000);
  });

  
});
</script>
 
<style type="text/css"> 
#divWrap{
  width:100px;
  height:300px;
  background-color:#15AeAf;
  border:solid 1px #CCCCCC;
}
#div1,#div2,#div3
{
padding:6px;
text-align:center;
  background-color:#A51eAf;
border:solid 1px #c3c3c3;
}
#div1,#div3
{
padding:20px;
display:none;
}
a{
  color:#FFFF76;
}
</style>
</head>
<body>
 
<div id="divWrap">
<div id="div2"><a href="#">Slide Up + Down</a></div>
<div id="div1"><a href="#">Slide </a></div>
<div id="div3"><a href="#">Link</a></div>
</div>

</body>
</html>




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Slide UP-Down Chaining
 slide down using JQuery     -  
 image slide show     -  
 java slide not comming up     -  
 html slide show images     -  
 Slide automatically-specific speed to a determined position     -  



Topic Tags

JQuery Slide
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com