Math.random()是随机数的生成,Math.floor()向下取整 。
再来个今天某人说过的例子:
纯css下拉菜单:
效果图
文章插图
这个的实现很简单,主要是:hover和过渡属性transition的使用 。
代码:
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>css</title> <style> *{margin: 0;padding:0;font-size: 16px;font-family: "微软雅黑"; } #container{width: 100px;margin: 0 auto;text-align: center;position: relative; } #container ul{list-style: none; } #container span{display: inline-block;width: 100px;height: 30px;line-height: 30px;cursor: pointer; } #container ul{height: 0;width: 100px;overflow: hidden;transition: all 1s;position: absolute;top: 30px;left: 0px; } #container:hover ul{height: 330px; }#container ul li{background: #eee;margin-top: 3px;cursor: pointer;height: 30px;line-height: 30px; } </style></head><body> <div id="container"> <span>移动</span> <ul><li>这里有1</li><li>这里有2</li><li>这里有3</li><li>这里有4</li><li>这里有5</li><li>这里有6</li><li>这里有7</li><li>这里有8</li><li>这里有9</li><li>这里有10</li> </ul> </div></body></html>
因为ul是个伸缩对象,所以要让它脱离文档流,不是在实用时会影响到布局,给它一个绝对定位即可 。
【PPT制作转盘抽奖活动游戏示例教程,比用希沃白板好做,效果更好】
- 如何用PPT给自己的证件照换底色,学会这个再也不用求人了
- 免费项目计划书ppt模板
- ps如何制作拼图效果???。。。,
- 在word中如何制作水印!
- 怎么制作起泡胶,是那种非常简单的做法?
- ps海报制作详细步骤及原图
- 双面羊绒大衣制作全过程,简单中带着复杂
- 微信专属的姓氏头像,特别个性,只需三步即可制作
- PPT中怎么快速打开标尺,网格线
- excel怎样制作下拉菜单