jQuery UI Effects - switchClass Demo : UI Effects « jQuery « JavaScript DHTML

Home
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
JavaScript DHTML » jQuery » UI Effects 




jQuery UI Effects - switchClass Demo
  
<!--
  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 - switchClass 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>
  <link type="text/css" href="js/demos.css" rel="stylesheet" />
  <style type="text/css">
    .toggler width: 500px; height: 200px; position: relative;}
    #button padding: .5em 1em; text-decoration: none; }
    #effect {position: relative;   }
    #effect.newClass width: 240px;  padding: 1em; letter-spacing: 0; font-size: 1.2em; }
    #effect.anotherNewClass text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
  </style>
  <script type="text/javascript">
  $(function() {
    $("#button").click(function(){
      $(".newClass").switchClass('newClass', 'anotherNewClass', 1000);
      $(".anotherNewClass").switchClass('anotherNewClass', 'newClass', 1000);
      return false;  
    });
  });
  </script>
</head>
<body>

<div class="demo">


<div class="toggler">
  <div id="effect" class="newClass ui-corner-all">
      Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. 
  </div>
</div>
<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: Puff
9.jQuery UI Effects: Pulsate
10.jQuery UI Effects: Scale
11.jQuery UI Effects: Shake
12.jQuery UI Effects: Size
13.jQuery UI Effects: Slide
14.jQuery UI Effects: Transfer
15.jQuery UI Effects - Hide Demo
16.jQuery UI Effects - Toggle Demo
17.jQuery UI Effects - removeClass Demo
18.Puff an image
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.