Animating images in the TreeView control
A TreeView
control enables you to display data in a hierarchical format. Let's apply animation to enlarge and shrink images in the nodes of a TreeView
control. We will also take a look at the mechanism of easing using the jQuery UI library. The constructs used in this example are as follows:
Construct |
Type |
Description |
---|---|---|
|
jQuery selector |
This selects an element using its ID. |
|
jQuery selector |
This selects all elements with the specified HTML tag. |
|
jQuery object |
This refers to the current jQuery object. |
|
jQuery method |
This performs a custom animation on the specified CSS properties. |
|
jQuery selector |
This selects an element with the specified attribute ending with the |
|
jQuery method |
This finds all elements that match the filter. |
|
CSS property |
This is the height of the element. |
|
jQuery event |
This is fired when the mouse... |