123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- *{
- margin: 0;
- padding: 0;
- }
- body{
- background-color: green;
- }
- .con{
- position: absolute;
- z-index: 0;
- top: 50%;
- margin-top: -51px;
- left: 50%;
- margin-left: -202px;
- }
- .bgDiv{
- width: 100%;
- height: 100%;
- background-color: #000;
- opacity: .5;
- position:fixed;
- display: none;
- z-index: 99;
- bottom: 0;
- }
- .leftNav{
- width: 50%;
- max-width: 340px;
- height: 100%;
- background-color: #fff;
- position: fixed;
- z-index: 999;
- top: 0;
- left: -50%;
- }
- .rightNav{
- width: 50%;
- max-width: 340px;
- height: 100%;
- background-color:#fff;
- position: fixed;
- z-index: 999;
- top: 0;
- right: -50%;
- }
- .upNav{
- width: 100%;
- height: 40%;
- background-color: #fff;
- position: fixed;
- z-index: 999;
- top: -40%;
- }
- .downNav{
- width: 100%;
- height: 40%;
- background-color: #fff;
- position: fixed;
- z-index: 999;
- bottom: -40%;
- }
|