Jquery Course

There are various ways to Show and Hide an element on a page with jQuery, one of these methods is with a sliding motion.

slideDown() and SlideUp()

The slideDown() method displays the matched elements by animating their height.
The slideUp() method hides the matched elements with a sliding motion.
These two jQuery methods have the following sintaxes:
$('selector').slideDown('duration');
$('selector').SlideUp('duration');
- "duration" - (optional) indicates the speed of the effect. It can be the strings "fast" and "slow", or a number that indicates the speed in milliseconds.

To execute some instructions when sliding motion is finished, you can use the following syntaxes:
$('selector').slideDown('duration', function() {
  // code to execute when slideDown  finished
});
$('selector').SlideUp('duration', function() {
  // code to execute when SlideUp is finished
});

Example slideDown

Displays a <div> (with id="dv1") with a sliding motion, then, when this effect is finished, displays another <div> (with id="dv2") in the same way.
<style type="text/css"><!--
div { display:none; float:left; width:200px; height:100px; }
#dv1 {background:#0708fe; }
#dv2 {background:#07fe08; }
--></style>

<script type="text/javascript"><!--
$(document).ready(function() {
  // when the tag with id="btn" is clicked, apply slideDown to #dv1, then to #dv2
  $('#btn').click(function() {
    $('#dv1').slideDown(1000, function() {
      $('#dv2').slideDown(800);
    });
  });
});
--></script>

<div id="dv1">Here can be some content</div>
<div id="dv2">Another content</div>
<button id="btn" style="clear:both;">Show</button>
Click the button below to see the effect.

Example slideUp

When click on a button, hides <div> (with class="cls"), then hides the button.
<style type="text/css"><!--
div.cls { float:left; width:200px; height:100px; }
#dv1 {background:#0708fe; }
#dv2 {background:#07fe08; }
--></style>

<script type="text/javascript"><!--
$(document).ready(function() {
  // when the tag with id="btn" is clicked, hides all DIVs with class="cls"
  // then hides the button
  $('#btn').click(function() {
    $('div.cls').slideUp(1000, function() {
      $('#btn').slideUp('slow');
    });
  });
});
--></script>

<div id="dv1" class="cls">Here can be some content</div>
<div id="dv2" class="cls">Another content</div>
<button id="btn" style="clear:both;">Hide</button>
Click on the "Hide" button to see the effect.
Here can be some content
Another content

slideToggle() method

The slideToggle() displays or hides the matched elements by animating their height. If the element is initially displayed, it will be hidden; if hidden, it will be shown.
Syntax:
$('selector').slideToggle('duration');
• Or, if you want to execute a function when sliding motion is finished, use this syntax:
$('selector').fadeToggle('duration', function() {
  // code to execute when fade is finished
});
- "duration" - sets the speed of the effect. It can be the strings "fast" and "slow", or a number that indicates the speed in milliseconds.

Example. Vertical menu with two lists that will be displayed when the mouse is over the menu, and hidde them when mouse out:
<style type="text/css"><!--
ul { float:left; cursor:pointer; }
li.cls {
 display:none;
 background:#e0e0fe;
}
--></style>

<script type="text/javascript"><!--
$(document).ready(function() {
  // when mouse is over or out UL, apply slideToggle
  $('ul').hover(function() {
    $(this).find('.cls').slideToggle('slow');
  });
});
--></script>

<ul>
 <li>Free Courses</li>
 <li class="cls"><a href="https://coursesweb.net/html/">HTML</a></li>
 <li class="cls"><a href="https://coursesweb.net/css/">CSS</a></li>
 <li class="cls"><a href="https://coursesweb.net/javascript/">Javascript</a></li>
</ul>
<ul>
 <li>Tutorials</li>
 <li class="cls"><a href="https://coursesweb.net/actionscript/lessons-as3">ActionScript</a></li>
 <li class="cls"><a href="https://coursesweb.net/ajax/">Ajax</a></li>
 <li class="cls"><a href="https://coursesweb.net/jquery/jquery-tutorials">jQuery</a></li>
</ul>
<br style="clear:both;" />
- The hover() method binds handlers for both mouseenter and mouseleave events.
This is the result of the code above. Position the mouse over the "Free Courses" and "Tutorials".

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is used in <table> to create table header cell?
<thead> <th> <td>
<table><tr>
  <th>Title 1</th>
  <th>Title 2</th>
</tr></table>
Which CSS property sets the distance between lines?
line-height word-spacing margin
.some_class {
  line-height: 150%;
}
Which function opens a new browser window.
alert() confirm() open()
document.getElementById("id_button").onclick = function(){
  window.open("http://coursesweb.net/");
}
Indicate the PHP function that returns an array with names of the files and folders inside a directory.
mkdir() scandir() readdir()
$ar_dir = scandir("dir_name");
var_export($ar_dir);
Using slideDown and SlideUp

Last accessed pages

  1. JavaScript Chronometer / Stopwatch (7355)
  2. Node.js Move and Copy file (28421)
  3. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (141759)
  4. Upload Script for Gallery of Images and Audio files (9754)
  5. Ajax-PHP Chat Script (49484)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (483)
  2. CSS cursor property - Custom Cursors (81)
  3. The Mastery of Love (73)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (64)
  5. CSS3 2D transforms (46)