【菜单的实现原理】

本来要用GWT实现一个菜单,最后还是逃不开要理解一下CSS和HTML.
    看了下面代码应该就能明白其中原理了。
    [java]
    <html>
    <head>
    <title>Menu example</title>
    <style>
    *{
    padding:0px;
    margin:0px;
    border:0px;
    }
    .menuBarPanel{
    border:5px solid red;
    width:99%;
    }
    .menuPanel{
    width:250px;
    height:200px;
    border:5px solid black;
    background:white;
    display:none;
    }
    .farRight{
    position:absolute;
    right:1%;
    z-index:2;
    }
    .contentPanel{
    width:99%;
    border:5px solid blue;
    background:yellow;
    position:absolute;
    }
    </style>
    <script>
    function show(){
    document.getElementById('menu')。style.display='block';
    }
    function hide(){
    document.getElementById('menu')。style.display='none';
    }
    </script>
    </head>
    <body>
    <div id="menuBar" class="menuBarPanel">
    <table style="width:100%;">
    <colgroup>
    <col style="width:50%;">
    <col style="width:50%;">
    </colgroup>
    <tr>
    <td></td>
    <!--How to locate the buttons on the far right.-->
    <td style="text-align:right;">
    <div>
    <input type="button" value="Hide" onClick="javascript:hide();"/>
    <input type="button" value="Show" onClick="javascript:show();"/>
    </div>
    </td>
    </tr>
    <tr>
    <td></td>
    <td>
    <!--How to locate the menu on the far right.-->
    <div class="farRight">
    <div id="menu" class="menuPanel">Some options here!</div>
    </div>
    </td>
    </tr>
    </table>
    </div>
    <div id="content" class="contentPanel">
    <p>A</p>
    <p>B</p>
    <p>C</p>
    <p>D</p>
    <p>E</p>
    </div>
    </body>
    </html>

更多精彩教程请关注:系统之家

转载于:https://www.cnblogs.com/qq12345678/p/3265927.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值