script.aculo.us
Developer(s) | Thomas Fuchs |
---|---|
Final release | 1.9.0
/ December 23, 2010 |
Written in | JavaScript |
Engine | |
Type | JavaScript library |
License | MIT License |
Website | {{URL|example.com|optional display text}} |
Search Script.aculo.us on Amazon.
Some use of "" in your query was not closed by a matching "".Some use of "" in your query was not closed by a matching "". script.aculo.us is a JavaScript library built on the Prototype JavaScript Framework, providing dynamic visual effects and user interface elements via the Document Object Model (DOM).
It is most notably included with Ruby on Rails and Seaside, but also provided separately to work with other web frameworks and scripting languages.
script.aculo.us was extracted by Thomas Fuchs from his work on fluxiom, a web based digital asset management tool by the design company wollzelle.[1] It was first released to the public in June 2005.
Features[edit]
script.aculo.us extends the Prototype JavaScript Framework by adding visual effects, user interface controls, and utilities.
Visual effects[edit]
There are five core effects script.aculo.us offers: Opacity, Scale, MoveBy, Highlight, and Parallel. Through these effects there are over 16 additional effects using combinations of the core effects out of the box. Programmers can also extend existing and create new effects.
Enabling an effect is a matter of assigning an element with an ID name and one line of code for the effect. Below is an example for the Effect.Fade effect applied to a DOM element with an ID of 'message-box':
new Effect.Fade('message-box');
This will cause the target ID to fade in opacity and end by setting the CSS "display" property to "none".
Various other settings within the effect can be modified, such as the duration of the effect and the range of the effect:
new Effect.Fade('message-box', {
duration: 2.0,
from: 0.0,
to: 0.8
});
This would fade the element, but stop when the effect is 80% complete (with an opacity of 20%).
Controls[edit]
Controls offers user interface elements including:
- Drag And Drop
- Draggables
- Droppables
- Sortables
- Slider
- Autocompletion
- In Place Editing
Builder[edit]
Builder allows creating DOM elements dynamically. Using the sample code below:
element = Builder.node('div',{id:'ghosttrain'},[
Builder.node('div',{className:'controls',style:'font-size:11px'},[
Builder.node('h1','Ghost Train'),
"testtext", 2, 3, 4,
Builder.node('ul',[
Builder.node('li',{className:'active', onclick:'test()'},'Record')
])
])
]);
...creates the following (without whitespace):
<div id="ghosttrain">
<div class="controls" style="font-size:11px">
<h1>Ghost Train</h1>
testtext234
<ul>
<li class="active" onclick="test()">Record</li>
</ul>
</div>
</div>
References[edit]
External links[edit]
- Lua error in Module:Official_website at line 90: attempt to index field 'wikibase' (a nil value).
- scriptaculous on GitHub
- script.aculo.us documentation wiki
- Unofficial Prototype & Script.aculo.us wiki and FAQ created by community members
This free and open-source software article is a stub. You can help EverybodyWiki by expanding it. |
This article "Script.aculo.us" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Script.aculo.us. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.