| 1234567891011121314151617181920 |
- BorderAnimation = function(color) {
- this._color = color;
- }
- BorderAnimation.prototype = {
- animate: function(panelElement) {
- var s = panelElement.style;
- s.borderWidth = '2px';
- s.borderColor = this._color;
- s.borderStyle = 'solid';
- window.setTimeout(
- function() {{
- s.borderWidth = 0;
- }},
- 500);
- }
- }
-
|