码迷,mamicode.com
首页 > Web开发 > 详细

【CSS3动画】下拉菜单模拟

时间:2017-04-12 01:51:35      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:utf-8   har   com   log   src   oct   enter   box   动画   

下拉菜单模拟效果图:

技术分享

 

CSS3:

        <style>
            #box{width:200px; height:50px; overflow:hidden; cursor: pointer; transition: all 0.35s;}
            #box:hover{height:250px;}
            #box ul{list-style:none; margin:0; padding:0;}
            #box ul li{width:198px; height:48px; line-height: 50px; text-align: center; border:1px red solid; background:#000000; color:white;}
        </style>

 

HTML:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <div id="box">
            <ul>
                <li>This‘s 1</li>
                <li>This‘s 2</li>
                <li>This‘s 3</li>
                <li>This‘s 4</li>
                <li>This‘s 5</li>
            </ul>
        </div>
    </body>
</html>

 

【CSS3动画】下拉菜单模拟

标签:utf-8   har   com   log   src   oct   enter   box   动画   

原文地址:http://www.cnblogs.com/Finbarr/p/6697090.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!