jQuery Plugin Architecture and Extended API Reference
Repeating code violates the DRY principle. jQuery provides multiple extension points: object methods, global functions, custom selectors, and easing effects.
Object Methods
Add a new method to every jQuery object:
jQuery.fn.myMethod = function() {
return this.each(function() {
// 'this' refers to a DOM element
doSomethingWith(this);
...
Posted on Mon, 14 Sep 2026 16:34:54 +0000 by jayR
AS3 TransitionManager Built-in Transition Effects
Reference: https://www.cnblogs.com/wonderKK/archive/2012/08/22/2650475.html
TransitionManager
Contains the following 10 transition types:
1. Blinds
--------Uses gradually disappearing or appearing rectangles to display a movie clip object.
(Parameters: numStrips - number of strips in the blinds effect, recommended range 1-50; dimension - inte ...
Posted on Sat, 08 Aug 2026 16:43:01 +0000 by Virtuali