123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /* * {
- margin: 0;
- padding: 0;
- } */
- /* body {
- background-color: #333333;
- } */
- /* img {
- border: 0;
- vertical-align: top;
- } */
- /* ul,
- li {
- list-style: none;
- } */
- .shutter {
- overflow: hidden;
- width: 100%;
- height: 100vh;
- /* max-height: 860px; */
- position: relative;
- /* margin: 50px auto; */
- /* border-radius: 10px; */
- }
- .shutter-img {
- z-index: 1;
- }
- .shutter-img,
- .shutter-img a {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .shutter-img a {
- cursor: default;
- }
- .shutter-img a>img,
- .shutter-img a>div {
- width: 100%;
- height: 100%;
- }
- .animate-img {
- background-size: cover;
- background-position: center center
- }
- .shutter-img .created {
- overflow: hidden;
- position: absolute;
- z-index: 20;
- }
- .shutter-btn {}
- .shutter-btn li {
- position: absolute;
- z-index: 2;
- top: 50%;
- width: 49px;
- height: 49px;
- margin-top: -25px;
- cursor: pointer;
- }
- .shutter-btn li.prev {
- left: 20px;
- background: url(../images/shutter_prevBtn.png) no-repeat;
- }
- .shutter-btn li.next {
- right: 20px;
- background: url(../images/shutter_nextBtn.png) no-repeat;
- }
- .shutter-desc {
- position: absolute;
- z-index: 2;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 36px;
- background: url(../images/shutter_shadow.png) repeat;
- }
- .shutter-desc p {
- padding-left: 20px;
- line-height: 36px;
- color: #fff;
- font-size: 14px;
- }
- @media(max-width:414px) {
- .shutter-btn li.prev,
- .shutter-btn li.next {
- background-size: cover
- }
- .shutter-btn li {
- width: 30px;
- height: 30px
- }
- }
|