Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
jQuery 1.4 Animation Techniques: Beginners Guide

You're reading from  jQuery 1.4 Animation Techniques: Beginners Guide

Product type Book
Published in Mar 2011
Publisher Packt
ISBN-13 9781849513302
Pages 344 pages
Edition 1st Edition
Languages
Concepts

Table of Contents (19) Chapters

jQuery 1.4 Animation Techniques Beginner's Guide
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Introduction 2. Fading Animations 3. Managing Animations 4. Sliding Animations 5. Custom Animations 6. Extended Animations with jQuery UI 7. Full Page Animations 8. Other Popular Animations 9. CSS3 Animations 10. Canvas Animations Pop Quiz Answers Index

Time for action – making an element disappear in a puff


In this example, we'll have a dialog box displayed in the center of the browser window and apply the puff effect to it when either the Ok or Cancel buttons are clicked.

  1. In the <body> of our template file, add the following elements for the dialog:

    <div id="confirm">
      <img src="img/help.png" alt="Help Icon">
        <p>Are you sure you want to do that?</p>
      <button>Ok</button><button>Cancel</button>
    </div>
  2. Add the accompanying script to the empty function as follows:

    $("#confirm").css({
      left: $(window).width() / 2 - $("#confirm").width() / 2, 
      top: $(window).height() / 2 - $("#confirm").height() / 2
    });
    
    $("#confirm, button").click(function() {
      $("#confirm").effect("puff");
    });
  3. Save this page as puff.html. Add the following styles for the dialog box to a new file in your text editor:

    #confirm {
      display:block; width:400px; height:120px; position:absolute;
      border:1px solid ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}