-
Notifications
You must be signed in to change notification settings - Fork 139
Action
Action (inherits Animation)
Action is a base class for all "non-animating" animations that provides empty implementations for abstract methods and adds a doAction method that will be called to perform the action's operation. While regular animations perform an operation in a sequence of small steps spread over an interval, the actions perform a single operation instantaneously. By default, all actions have a duration of zero. The actions are very useful for defining complex animations.
Name | Description |
---|---|
constructor(target, duration, fps) | |
doAction() | The doAction method must be implemented by all actions. |
getAnimatedValue() | Empty implementation of required abstract method. |
onEnd() | Calls the doAction method when the animation completes. |
setValue() | Empty implementation of required abstract method. |
Params:
-
target
- Type: Object
- Description: Target of the animation.
-
duration
- Type: Number
- Description: Length of the animation in seconds. The default is 1.
-
fps
- Type: Number
- Description: Number of steps per second. The default is 25.
The doAction method must be implemented by all actions.
Empty implementation of required abstract method.
Calls the doAction method when the animation completes.
Empty implementation of required abstract method.
This content was moved from https://ajaxcontroltoolkit.codeplex.com/documentation to this Documentation wiki. This is now the authoritative location of the AJAX Control Toolkit documentation.
- Step-by-Step Installation Guide
- Upgrading from v7.x and below
- Uninstalling the AJAX Control Toolkit
- Troubleshooting Installer Issues
- Updating the Project from CI Builds
- How to Use Bundling and CDN
- Creating a Custom Localization
- Creating a Custom Control
- Design Standards
Controls:
- Accordion
- AjaxFileUpload
- AreaChart
- AsyncFileUpload
- BarChart
- BubbleChart
- ComboBox
- Editor (deprecated)
- Gravatar
- LineChart
- NoBot
- PieChart
- Rating
- ReorderList
- Seadragon
- TabContainer
- TabPanel
Extenders:
- AlwaysVisibleControl
- Animation
- AutoComplete
- BalloonPopup
- Calendar
- CascadingDropDown
- CollapsiblePanel
- ColorPicker
- ConfirmButton
- DragPanel
- DropDown
- DropShadow
- DynamicPopulate
- FilteredTextBox
- HoverMenu
- HtmlEditor
- ListSearch
- MaskedEdit
- MaskedEditValidator
- ModalPopup
- MultiHandleSlider
- MutuallyExclusiveCheckBox
- NumericUpDown
- PagingBulletedList
- PasswordStrength
- PopupControl
- ResizableControl
- RoundedCorners
- Slider
- SlideShow
- TextBoxWatermark
- ToggleButton
- UpdatePanelAnimation
- ValidatorCallout