📄 topiclist.htc
字号:
<public:component>
<public:attach event="onmouseover" onevent="OnMouseOver()" />
<public:attach event="onmouseout" onevent="OnMouseOut()" />
<public:attach event="onclick" onevent="Onclick()" />
<script language="javascript">
function OnMouseOut()
{
this.style.backgroundColor='#fafafa';
}
function OnMouseOver()
{
this.style.backgroundColor='#f5f5f5';
}
function Onclick()
{
//this.style.backgroundColor='#f3f3f3';
if(this.style.backgroundImage=='url(skin/vista/vistapic/top1.jpg)')
{this.style.backgroundImage='';
Alpha();
this.style.fontWeight ='';
}
else
{
this.style.backgroundImage='url(skin/vista/vistapic/top1.jpg)'
this.style.fontWeight ='bold';
}
}
var p=-100;
function Alpha(){
if (p<100){
p=p+10;
//alert(p);
this.style.filter='alpha(opacity='+Math.abs(p)+')';
self.setTimeout(Alpha,1);
}
else{ p=-100;
}
}
</script>
</public:component>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -