如下示例的效果,完全用javascrip能实现吗?我只需要颜色变化的时候比较自然就可以.
<!--shili.html--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE><style type=text/css>
<!--
a {cursor:hand; height:1; behavior: url(mdio.htc); filter:progid:dximagetransform.microsoft.gradientwipe(duration=1);text-decoration : none ; }                     a:link {color:#636139; text-decoration:none;}
a:visited {color:#636139; text-decoration:none;}
a:hover {color:#FF6910; text-decoration:underline;} 
a:active {color:#636139; text-decoration:none;}-->
</style></HEAD><BODY><a href="#">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</a></BODY>
</HTML><!-- mdio.htc -->
<public:component>
<public:attach event="onmouseover" onevent="domouseover()">
<public:attach event="onmouseout" onevent="domouseout()">
<script language="javascript">
function domouseover(){
 with(element)
 {filters.item(0).Apply();filters.item(0).Play();}}
function domouseout(){
 with(element){
  filters.item(0).Apply();
  filters.item(0).Play();}}
</script>
</public:component>