Fx.Slide Demo : Slide « Mootools « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » Mootools » Slide 
Fx.Slide Demo
 

<!--
MooTools is released under the Open Source MIT license, 
which gives you the possibility to use it and modify 
it in every circumstance. 
-->

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <style type="text/css">
h3.section {
  margin-top: 1em;
}

#vertical_slide, #horizontal_slide {
  background: #D0C8C8;
  color: #8A7575;
  padding: 10px;
  border: 5px solid #F3F1F1;
  font-weight: bold;
}

div.marginbottom {
  /* Since the Fx.Slide element resets margins, we set a margin on the above element */
  margin-bottom: 10px;
}  
  
  </style>
  <script type="text/javascript" src="mootools.js"></script>
  <script type="text/javascript">
window.addEvent('domready', function() {
  var status = {
    'true': 'open',
    'false': 'close'
  };
  
  //-vertical

  var myVerticalSlide = new Fx.Slide('vertical_slide');

  $('v_slidein').addEvent('click', function(e){
    e.stop();
    myVerticalSlide.slideIn();
  });

  $('v_slideout').addEvent('click', function(e){
    e.stop();
    myVerticalSlide.slideOut();
  });

  $('v_toggle').addEvent('click', function(e){
    e.stop();
    myVerticalSlide.toggle();
  });

  $('v_hide').addEvent('click', function(e){
    e.stop();
    myVerticalSlide.hide();
    $('vertical_status').set('html', status[myVerticalSlide.open]);
  });
  
  $('v_show').addEvent('click', function(e){
    e.stop();
    myVerticalSlide.show();
    $('vertical_status').set('html', status[myVerticalSlide.open]);
  });
  
  // When Vertical Slide ends its transition, we check for its status
  // note that complete will not affect 'hide' and 'show' methods
  myVerticalSlide.addEvent('complete', function() {
    $('vertical_status').set('html', status[myVerticalSlide.open]);
  });


  //--horizontal
  var myHorizontalSlide = new Fx.Slide('horizontal_slide', {mode: 'horizontal'});

  $('h_slidein').addEvent('click', function(e){
    e.stop();
    myHorizontalSlide.slideIn();
  });

  $('h_slideout').addEvent('click', function(e){
    e.stop();
    myHorizontalSlide.slideOut();
  });

  $('h_toggle').addEvent('click', function(e){
    e.stop();
    myHorizontalSlide.toggle();
  });

  $('h_hide').addEvent('click', function(e){
    e.stop();
    myHorizontalSlide.hide();
    $('horizontal_status').set('html', status[myHorizontalSlide.open]);
  });
  
  $('h_show').addEvent('click', function(e){
    e.stop();
    myHorizontalSlide.show();
    $('horizontal_status').set('html', status[myHorizontalSlide.open]);
  });
  
  // When Horizontal Slide ends its transition, we check for its status
  // note that complete will not affect 'hide' and 'show' methods
  myHorizontalSlide.addEvent('complete', function() {
    $('horizontal_status').set('html', status[myHorizontalSlide.open]);
  });
});  
  </script>
  <title>Fx.Slide Demo</title>
</head>
<body>
  <h1>Fx.Slide</h1>
  <h2>Introduction</h2>
  <p>
    Here goes a nice introduction
  </p>
  <h3 class="section">Vertical</h3>
  <div class="marginbottom">
    <a id="v_slideout" href="#">slide out</a>
    |
    <a id="v_slidein" href="#">slide in</a>
    |
    <a id="v_toggle" href="#">toggle</a>
    |
    <a id="v_hide" href="#">hide</a>
    |
    <a id="v_show" href="#">show</a>
    | <strong>status</strong>: <span id="vertical_status">open</span>
  </div>
  <div id="vertical_slide">
    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  </div>
  <h3 class="section">Horizontal</h3>
  <div class="marginbottom">
    <a id="h_slideout" href="#">slide out</a>
    |
    <a id="h_slidein" href="#">slide in</a>
    |
    <a id="h_toggle" href="#">toggle</a>
    |
    <a id="h_hide" href="#">hide</a>
    |
    <a id="h_show" href="#">show</a>
    | <strong>status</strong>: <span id="horizontal_status">open</span>
  </div>
  <div id="horizontal_slide">
    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  </div>
</body>
</html>

   
     
  
Related examples in the same category
1. The Slider-Plugin allows you to drag&drop a knob inside an element to set a value within a certain range
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.