How to simply use YUI to create JavaScript animation_YUI.Ext related
原文地址:http://www.jackslocum.com/blog/2006/08/24/javascript-animations-with-yahoo-ui-made-easy/
YUI的动画类简直就是一门艺术工作。不像其它的传统的JS库,提供了已经“预设好”的直接可运行的效果,相反,它由开发者做自己喜欢的。在这点,我比较喜欢适当地运行一些动画和变换效果,越多越好。
按照这么地说,也会有个问题。动画API是非常“底层”的工作,而且需要您花时间去弄的,子类的构建函数会又长又啰嗦的。因此,在上一发布的版本中, 我把 YAHOO.ext.Element的动画效果尽量简单地调用。其实,在这个网站的大多数效果都是它完成的。但如果我想做些较复杂的效果,该怎么办?当某个效果完成后,YUI能够以函数的方式提供一个回调(callback).利用Callback你能够将多个效果排队来做出复杂的效果。唯一的问题是,在其函数内,每一步效果的封装好的,这样,代码起来就很复杂可怕了。另外一个问题是,当你同一时内多个元素发生动画效果的话,代码会持续地随着每个元素它拥有的回调函数的增长而增长。不得不说,YahooUI!在这方面,有点难以适用于开发,--尤其日渐常用这类效果。
新版的yui.ext包含了原本yui做动画所需的复杂代码,甚至比你想的要简单。这里是功能列表:
*自动调整动画顺序 --回调函数不再有啦!
*动画列表(一组的动画效果)可按需预定义和执行
var exdiv = new YAHOO.ext.Actor('example', null, true);
exdiv.moveIn('top');
exdiv.play();
var anim = new YAHOO.ext.Animator(this.minbar, this.dockbar); <br>anim.startCapture();
this.dockbar.setX(-this.dockedWidth); <br>this.dockbar.setWidth(this.dockedWidth); <br>this.dockbar.setVisible(true);
anim.beginSync(); <br>this.minbar.move('left', this.minbar.getWidth()+this.margin, true, .35); <br>this.dockbar.move('right', this.dockedWidth+this.margin, true, .4, null, YAHOO.util.Easing.easeOut); <br>anim.endSync();
anim.play(this.fireDocked);
<font face="Arial">var animator = new YAHOO.ext.Animator();<br>var cursor = new YAHOO.ext.Actor('cursor-img', animator); <br></font><font face="Arial">var resize = new YAHOO.ext.Actor('resize-img', animator); <br>var click = new YAHOO.ext.Actor('click-img', animator); <br>var splitter = new YAHOO.ext.Actor('splitter', animator); <br>animator.startCapture(); <br>animator.addAsyncCall(Blog.navbar.undockDelegate, 1); <br>cursor.show(); <br>cursor.moveTo(500,400); <br>cursor.moveTo(20, getEl('navbar').getY()+10, true, .75); <br>click.clearOpacity(); <br>click.show(); <br>click.alignTo(cursor, 'tl', [-4, -4]); <br>animator.pause(.5); <br>click.hide(true, .7); <br>animator.addAsyncCall(Blog.navbar.dockDelegate, 1); <br>cursor.alignTo('splitter', 'tr', [0, +100], true, 1); <br>resize.alignTo('splitter', 'tr', [-12, +100]);<br>animator.beginSync(); <br>cursor.hide(); <br>resize.show(); <br>animator.endSync(); <br>splitter.highlight('#EEEEFF', '#C3DAF9', .3); <br>splitter.highlight('#EEEEFF', '#C3DAF9', .3); <br>animator.pause(2);<br>resize.hide(); <br>cursor.show(); <br>cursor.moveTo(-100, -100, true); <br>animator.stopCapture(); <br>animator.play();</font>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

This article series was rewritten in mid 2017 with up-to-date information and fresh examples. In this JSON example, we will look at how we can store simple values in a file using JSON format. Using the key-value pair notation, we can store any kind

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig
