jQuery UI Effects: Puff : UI Effects « jQuery « 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 » jQuery » UI Effects 
jQuery UI Effects: Puff
  

<!--
  jQuery UI Effects Blind 1.7.2
 
  Copyright (c2009 AUTHORS.txt (http://jqueryui.com/about)
  Dual licensed under the MIT (MIT-LICENSE.txt)
  and GPL (GPL-LICENSE.txtlicenses.
 
 
-->
<!doctype html>
<html lang="en">
<head>
  <title>jQuery UI Effects - Show Demo</title>
  <link type="text/css" href="js/themes/base/ui.all.css" rel="stylesheet" />
  <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
  <script type="text/javascript" src="js/ui/effects.core.js"></script>
  <script type="text/javascript" src="js/ui/effects.blind.js"></script>
  <script type="text/javascript" src="js/ui/effects.bounce.js"></script>
  <script type="text/javascript" src="js/ui/effects.clip.js"></script>
  <script type="text/javascript" src="js/ui/effects.drop.js"></script>
  <script type="text/javascript" src="js/ui/effects.explode.js"></script>
  <script type="text/javascript" src="js/ui/effects.fold.js"></script>
  <script type="text/javascript" src="js/ui/effects.highlight.js"></script>
  <script type="text/javascript" src="js/ui/effects.pulsate.js"></script>
  <script type="text/javascript" src="js/ui/effects.scale.js"></script>
  <script type="text/javascript" src="js/ui/effects.shake.js"></script>
  <script type="text/javascript" src="js/ui/effects.slide.js"></script>
  <script type="text/javascript" src="js/ui/effects.transfer.js"></script>
  <link type="text/css" href="js/demos.css" rel="stylesheet" />
  <style type="text/css">
    .toggler width: 500px; height: 200px; }
    #button padding: .5em 1em; text-decoration: none; }
    #effect width: 240px; height: 135px; padding: 0.4em; position: relative; }
    #effect h3 margin: 0; padding: 0.4em; text-align: center; }
    .ui-effects-transfer border: 2px dotted gray; 
  </style>
  <script type="text/javascript">
  $(function() {

    //run the currently selected effect
    function runEffect(){
      //get effect type from 
      var selectedEffect = $('#effectTypes').val();
      
      //most effect types need no options passed by default
      var options = {};
      //check if it's scale, transfer, or size - they need options explicitly set
      if(selectedEffect == 'scale'){  options = {percent: 100}}
      else if(selectedEffect == 'transfer'){ options = to: "#button", className: 'ui-effects-transfer' }}
      else if(selectedEffect == 'size'){ options = to: {width: 280,height: 185} }}
      
      //run the effect
      $("#effect").show(selectedEffect,options,500,callback);
    };
    
    //callback function to bring a hidden box back
    function callback(){
      setTimeout(function(){
        $("#effect:visible").removeAttr('style').hide().fadeOut();
      }1000);
    };
    
    //set effect from select menu value
    $("#button").click(function() {
      runEffect();
      return false;
    });
    
    $("#effect").hide();
  });
  </script>
</head>
<body>

<div class="demo">

<div class="toggler">
  <div id="effect" class="ui-widget-content ui-corner-all">
    <h3 class="ui-widget-header ui-corner-all">Show</h3>
    <p>
      Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi.
    </p>
  </div>
</div>

<select name="effects" id="effectTypes">

  <option value="puff">Puff</option>
</select>

<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>


</div><!-- End demo -->

<div class="demo-description">

<p>Click the button above to preview the effect.</p>

</div><!-- End demo-description -->

</body>
</html>

   
    
  
Related examples in the same category
1. jQuery UI Effects: Blind
2. jQuery UI Effects: Bounce
3. jQuery UI Effects: Clip
4. jQuery UI Effects: Drop
5. jQuery UI Effects: Explode
6. jQuery UI Effects: Fold
7. jQuery UI Effects: Highlight
8. jQuery UI Effects: Pulsate
9. jQuery UI Effects: Scale
10. jQuery UI Effects: Shake
11. jQuery UI Effects: Size
12. jQuery UI Effects: Slide
13. jQuery UI Effects: Transfer
14. jQuery UI Effects - Hide Demo
15. jQuery UI Effects - switchClass Demo
16. jQuery UI Effects - Toggle Demo
17. jQuery UI Effects - removeClass Demo
18. Puff an image
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.