📄 topiclist.xml
字号:
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
<binding id="custom1" styleexplicitcontent="true">
<implementation>
</implementation>
<handlers>
<handler event="mouseover">
<content>
this.style.backgroundColor='#f5f5f5';
</content>
</handler>
<handler event="mouseout">
this.style.backgroundColor='#fafafa';
</handler>
<handler event="mousedown">
<content>
<![CDATA[
var p=-100;
var thisobj=this;
function Alpha(){
if (p<100){
p=p+10;
thisobj.style.MozOpacity=Math.abs(p)/100;
self.setTimeout(Alpha,1);
}
else{
p=-100;
}
}
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';
}
]]>
</content>
</handler>
</handlers>
</binding>
</bindings>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -