ATTRIBUTENAME Attribute | attributeName Property

This topic documents a feature of HTML+TIME 2.0, which is obsolete as of Windows Internet Explorer 9.

Sets or gets the name of the element attribute to animate.

Syntax

HTML <ELEMENT ATTRIBUTENAME = sAttribute... >
Scripting [ sAttribute = ] object.attributeName [ = sAttribute ]

Possible Values

sAttribute String that specifies or receives the name of the element attribute to animate.

The property is read/write. The property has no default value.

Remarks

The value of this property must be a valid attribute on the specified element.

Example

This example shows how to use the attributeName property set to "width" to animate the width attribute on the element.

<HTML XMLNS:t="urn:schemas-microsoft-com:time">
<HEAD>
<TITLE>attributeName Property</TITLE>
<?IMPORT namespace="t" implementation="#default#time2">

<STYLE>
    .time{ behavior: url(#default#time2);}
</STYLE>
</HEAD>

<BODY TOPMARGIN=0 LEFTMARGIN=0 BGPROPERTIES="FIXED" BGCOLOR="#FFFFFF"
    LINK="#000000" VLINK="#808080" ALINK="#000000">

<t:ANIMATE id="t1" targetElement="div1" attributeName="width" to="250px"
    dur="5" autoreverse="true" repeatCount="indefinite" />

<DIV id="div1" style="position:relative;top:25px;left:50px;height:100px;
    width:100px;background-color:yellow;text-align:center;font-size:large;">
    Expanding DIV</DIV>

</BODY>
</HTML>

Code example: http://samples.msdn.microsoft.com/workshop/samples/author/behaviors/attributename.htm

Applies To

t:ANIMATE, t:ANIMATECOLOR, t:SET

See Also

Introduction to HTML+TIME