当前位置:萝卜系统下载站 > 技术开发教程 > 详细页面

Behavior学习笔记(6)

Behavior学习笔记(6)

更新时间:2021-01-25 文章作者:未知 信息来源:网络 阅读次数:

自定义的METHOD:
在"HTC"中建立的副程序,除了让HTC本身的处理程序使用,还可以加入<Public:method name="程序名称">
声明成自定义的"METHOD",让主程序的元件使用。见如下代码:
xmllover.htc
<public:method name="change1()"/>
<Script language="vbscript">
pos=1
sub change1()
str="我是xmllover我怕谁~~~"
text1=space(20)+str
element.value=mid(text1,pos)
pos=pos+1
if pos>len(text1) then pos=1
end sub
</script>

xmllover.htm
<html>
<head>
<title>xmllover</title>
<style>
.type1 {behavior:url(xmllover.htc)}
</style>
<script language="vbscript">
sub start()
window.setinterval "t1.change1",500
end sub
</script>
</head>

</body>
<input type="text" name="t1" size="24" class="type1" style="font-size:18">
<p>
<input type="button" name="b1" value="click me" onclick="start()">
</body>
</html>
自定义的动画效果!!!

温馨提示:喜欢本站的话,请收藏一下本站!

本类教程下载

系统下载排行

网站地图xml | 网站地图html