📄 leftbigtype.xml
字号:
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
<binding id="custom" styleexplicitcontent="true">
<implementation>
<constructor>
<![CDATA[
this.style.width='95%';
this.style.height='18';
this.style.padding='4 0 2 6';
this.style.color='#ffffff';
this.style.border='1px solid #141414';
this.style.backgroundImage='url(skin/vista/vistapic/v2.gif)';
this.style.cursor='pointer';
]]>
</constructor>
</implementation>
<handlers>
<handler event="mouseover">
<content>
this.style.backgroundImage='url(skin/vista/vistapic/v5.gif)';
</content>
</handler>
<handler event="mouseout">
this.style.backgroundImage='url(skin/vista/vistapic/v2.gif)';
</handler>
<handler event="mousedown">
<content>
this.style.backgroundImage='url(skin/vista/vistapic/v5.gif)';
<html:script>
<![CDATA[
var myid=this.id;
var menuboard=myid+"menu";
function showtbe(){
if(self.document.getElementById(menuboard).style.display=="none"){
self.document.getElementById(menuboard).style.display="";
}
else{
self.document.getElementById(menuboard).style.display="none";
}
Alpha();
}
var p=-100;
function Alpha(){
if (p<100){
p=p+10;
//alert(p);
self.document.getElementById(myid).style.MozOpacity=Math.abs(p)/100;
self.setTimeout(Alpha,1);
}
else{
p=-100;
}
}
showtbe();
]]>
</html:script>
</content>
</handler>
</handlers>
</binding>
</bindings>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -