HBCMS更多的中文手册参考:

image参数属性

DHTML文档教程

Sets or retrieves the Microsoft® DirectAnimation® Image (DAImage class) displayed by the anim:da element.

dhtml语法

xmln/a
scriptinganim:da.image [ = oimage ]

dhtml可能的值

oImage DAImage object that specifies the image displayed by the anim:DA element.

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

DHTML代码范例

This example uses the image property to display a static DAImage class.

<HTML>
<HEAD>
<TITLE>image</TITLE>
<XML:NAMESPACE PREFIX="anim"/>
<STYLE>
.time       { behavior: url(#time); }
anim\:DA    { behavior: url(#default#anim); }
</STYLE>
<OBJECT ID="time" CLASSID="CLSID:476C391C-3E0D-11D2-B948-00C04FA32195">
</OBJECT>
</HEAD>
<BODY>
<P>The image below is specified using the image property.</P>
<SPAN ID="spanImg" CLASS="time" t:TIMEACTION="visibility" t:BEGIN="3"
t:DUR="5">
</SPAN>
<DIV ALIGN="center">
<anim:DA ID="da1" STYLE="width:200; height:200; z-index: -1;" />
</DIV>
<BR>
<SCRIPT LANGUAGE="JScript">
<!--
// Assign a variable to the DA statics library
m = da1.statics;
// Create the DAImage
img1 = m.ImportImage("../common/sun.gif");
// Specify the DAImage to be displayed by the ANIM:DA tag
da1.image = img1;
//-->
</SCRIPT>
</BODY>
</HTML>
This feature requires Microsoft® Internet Explorer 5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.

是否符合公共标准

There is no public standard that applies to this property.

Applies To

anim:DA

更多语法参考

sound, statics