css实现弹出下拉菜单动态效果代码

代码语言:html

所属分类:菜单导航

代码描述:css实现弹出下拉菜单动态效果代码

代码标签: 下拉菜单 动态 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

 
<meta charset="UTF-8">

 
 
<style>
html,body{
  min-height:100%
}
body {
  background: #26a56C url(//repo.bfw.wiki/bfwrepo/image/60963389b5aa3.png) center no-repeat;
  background-size:cover;
  color: #26D56C;
  font-family:sans-serif
}


.box{
   background-color: inherit ;
  border:3px solid #fff;
  width: 140px;
  max-height: 60px;
  position: absolute;
  top: 40vmin;
  left: 50%;
    margin-left: -80px;
   transition: all 0.6s ease;
}
.box.active{
   background-color: #fff;
   box-shadow: 0px 7px 10px rgba(0,0,0,0.2);
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0