DHTML
  Home arrow DHTML arrow Page 4 - Reviewing More DHTML Effects from the Scri...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Dedicated Servers  
Moblin 
JMSL Numerical Library 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
DHTML

Reviewing More DHTML Effects from the Scriptaculous DHTML Library
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 5
    2007-04-11

    Table of Contents:
  • Reviewing More DHTML Effects from the Scriptaculous DHTML Library
  • Working with the Highlight effect
  • Creating parallel DHTML effects with Scriptaculous
  • Creating combination DHTML effects

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Reviewing More DHTML Effects from the Scriptaculous DHTML Library - Creating combination DHTML effects


    (Page 4 of 4 )

    As I mentioned before, the Scriptaculous animation framework comes equipped with a group of predefined effects, which are in fact a combination of the four basic effects. This feature is particularly useful if you’re planning to implement only primitive effects on your web site. If you’re looking for more advanced animations, the “Effect.Parallel” class that was explained in the prior section should fit your requirements perfectly.

    Now, after introducing the concept of “combined” effects, I’d like you to have a look at the following examples. They show how to implement four different pre-built animations, where the first two correspond to the “Appear” and “Fade” effects, and the last ones use the “Puff” and “DropoOut” animations respectively.

    The aforementioned examples are as follows:  

    <!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">
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     
    <title>Example of Appear effect (combination of effects)</title>
     
    <script language="javascript" src="scriptaculous/js/prototype.js"></script>
     
    <script language="javascript" src="scriptaculous/js/scriptaculous.js"></script>
     
    <script language="javascript">
       
    // display effect
       
    function displayEffect(){
           Effect.Appear('container',{ duration: 3.0 });
       
    }
       
    function initializeElement(){
           Event.observe($('displaylink'),'click',displayEffect,false);
       
    }
       
    Event.observe(window,'load',initializeElement,false);
      
    </script>
     
    <style type="text/css">
       
    #container{
          position: absolute;
          top: 200px;
          left: 200px;
          width: 300px;
          height: 100px;
          padding: 10px;
          background: #cf9;
          font: normal 11px Verdana, Arial, Helvetica, sans-serif;
          color: #000;
          text-align: center;
          border: 1px solid #999;
        
    }
     
    </style>
    </head>
    <body>
     
    <a href="#" id="displaylink">Click to show the element</a>
      
    <div id="container" style="display:none;">This element is appearing now</div>
    </body>
    </html>

    <!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">
    <head>
     
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     
    <title>Example of Fade effect (combination of effects)</title>
     
    <script language="javascript" src="scriptaculous/js/prototype.js"></script>
     
    <script language="javascript" src="scriptaculous/js/scriptaculous.js"></script>
     
    <script language="javascript">
       
    // display effect
       
    function displayEffect(){
           Effect.Fade('container',{ transition: Effect.Transitions.wobble});
       
    }
       
    function initializeElement(){
           Event.observe($('displaylink'),'click',displayEffect,false);
       
    }
       
    Event.observe(window,'load',initializeElement,false);
     
    </script>
     
    <style type="text/css">
       
    #container{
     
         position: absolute;
          top: 200px;
          left: 200px;
          width: 300px;
          height: 100px;
          padding: 10px;
          background: #cf9;
          font: normal 11px Verdana, Arial, Helvetica, sans-serif;
          color: #000;
          text-align: center;
          border: 1px solid #999;
       
    }
     
    </style>
    </head>
    <body>
     
    <a href="#" id="displaylink">Click to remove the element</a>
     
    <div id="container">This element is fading out now</div>
    </body>
    </html>

    <!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">
    <head>
     
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     
    <title>Example of Puff effect (combination of effects)</title>
     
    <script language="javascript" src="scriptaculous/js/prototype.js"></script>
     
    <script language="javascript" src="scriptaculous/js/scriptaculous.js"></script>
     
    <script language="javascript">
       
    // display effect
       
    function displayEffect(){
     
          new Effect.Puff('container',{duration:3});
       
    }
       
    function initializeElement(){
           Event.observe($('container'),'click',displayEffect,false);
       
    }
       
    Event.observe(window,'load',initializeElement,false);
      
    </script>
     
    <style type="text/css">
       
    #container{
          position: absolute;
          top: 200px;
          left: 200px;
          width: 300px;
          height: 100px;
          padding: 10px;
          background: #cf9;
          font: normal 11px Verdana, Arial, Helvetica, sans-serif;
          color: #000;
          text-align: center;
          border: 1px solid #999;
       
    }
     
    </style>
    </head>
    <body>
     
    <div id="container">This element is fading out now</div>
    </body>
    </html>

    <!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">
    <head>
     
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     
    <title>Example of Dropout effect (combination of effects)</title>
     
    <script language="javascript" src="scriptaculous/js/prototype.js"></script>
     
    <script language="javascript" src="scriptaculous/js/scriptaculous.js"></script>
     
    <script language="javascript">
       
    // display effect
       
    function displayEffect(){
           new Effect.DropOut('container');
       
    }
       
    function initializeElement(){
           Event.observe($('container'),'click',displayEffect,false);
       
    }
       
    Event.observe(window,'load',initializeElement,false);
     
    </script>
     
    <style type="text/css">
       
    #container{
          position: absolute;
          top: 200px;
          left: 200px;
          width: 300px;
          height: 100px;
          padding: 10px;
          background: #cf9;
          font: normal 11px Verdana, Arial, Helvetica, sans-serif;
          color: #000;
          text-align: center;
          border: 1px solid #999;
       
    }
     
    </style>
    </head>
    <body>
     
    <div id="container">This element is dropping out now</div>
    </body>
    </html>

    As you can see, creating combination effects with the Scriptaculous library is actually a straightforward task, since this process is nearly identical to building core animations. Of course, you’ll appreciate the results of these DHTML animations much better if you test all of them in your browser. I’m sure you won’t be disappointed at all!

    Final thoughts

    That’s all for the moment. In this second part of the series, you learned in a friendly fashion how to create parallel and combination effects with the Scriptaculous animation framework. Nonetheless, this excellent JavaScript library has been provided with many more pre-built effects for spicing up your DHTML applications. These will be covered in the final article. I hope to see you there!


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · Over the course of this second installment of the series you’ll learn how to use a...
     

    DHTML ARTICLES

    - Text-Justify, Volume, and Other Style Sheet ...
    - Ruby-Position, Size, and Other Style Sheet P...
    - Padding, Pages, and More Style Sheet Propert...
    - Marks, Orphans, and More Style Sheet Propert...
    - Layouts, Margins, and Other Style Sheet Prop...
    - Floats, Fonts, and Other Style Sheet Propert...
    - Color, Filters, and Other Style Sheet Proper...
    - Borders and More with Style Sheets
    - Learning Style Sheet Properties
    - Style Sheet Property Reference
    - Completing a Noisy Image Application
    - An Object-Based Approach to Building Noisy I...
    - A Basic Method for Building Noisy Images
    - Adding More Features to Sliders with the Scr...
    - Using Sliders with the Scriptaculous Framewo...







    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway