Js filter effect menu

Source: Internet
Author: User
Tip: you can modify some code before running

<style>/* 先把这个 xmenu 的样式放到css里 */.xmenu td{font-size:12px;font-family:verdana,arial;font-weight:bolder;color:#ffffff;border:1px solid #336699;background:#336699;filter:blendtrans(duration=0.5);cursor:hand;text-align:center;}</style><script>/* http://lexrus.这是把事件动作绑定到菜单上的函数*/function attachXMenu(objid){var tds=objid.getElementsByTagName('td');for(var i=0;i<tds.length;i++){with(tds[i]){onmouseover=function(){with(this){filters[0].apply();style.background='#66CCFF'; //这是鼠标移上去时的背景颜色style.border='1px solid #ffffff'; //边框style.color='black'; //文字颜色filters[0].play();}}onmouseout=function(){with(this){filters[0].apply();style.background='#336699'; //这是鼠标离开时的背景颜色style.border='1px solid #336699'; //边框style.color='#ffffff'; //文字颜色filters[0].play();}}}}}</script><!--菜单从这里开始, 注意要把class设置成和css里相同的, 还要为它设一个id--><table class="xmenu" id="xmenu0" width="500" cellpadding="1" cellspacing="4" border="0" bgcolor="#336699" align="center"><tr><td>My</td><td>Name</td><td>Is</td><td>LeX</td><td>Rus</td><td>!!!</td></tr></table><script>attachXMenu(xmenu0); //在上面这个table结束的地方执行事件动作的绑定, 这里的这个xmenu0就是那个table的id</script><!--下面这个是竖排的--><br/><table class="xmenu" id="xmenu1" width="100" cellpadding="1" cellspacing="4" border="0" bgcolor="#336699" align="center"><tr><td>My</td></tr><tr><td>Name</td></tr><tr><td>Is</td></tr><tr><td>LeX</td></tr><tr><td>Rus</td></tr><tr><td>!!!</td></tr></table><script>attachXMenu(xmenu1);</script>
Tip: you can modify some code before running

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.