topiclist.xml
来自「完美政府版,正版网站解决方案」· XML 代码 · 共 52 行
XML
52 行
<?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 + =
减小字号Ctrl + -
显示快捷键?