123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- * {
- margin: 0;
- padding: 0;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- }
- .content {
- width: 100%;
- height: 100%;
- }
- .content .con {
- width: 100%;
- height: 100%;
- font-size: 0;
- display: flex;
- align-items: center;
- }
- #img {
- width: 100%;
- height: 100%;
- }
- #timer {
- display: inline-block;
- position: fixed;
- top: 40px;
- right: 10px;
- }
- #info {
- position: absolute;
- top: 0;
- left: 0;
- width: 36px;
- height: 36px;
- line-height: 36px;
- border-radius: 50%;
- background-color: rgba(0, 0, 0, 0.3);
- text-align: center;
- color: #FFFFFF;
- font-size: 12px;
- }
- .circleProgress_wrapper {
- width: 36px;
- height: 36px;
- position: relative;
- }
- .wrapper {
- width: 18px;
- height: 36px;
- position: absolute;
- top: 0;
- overflow: hidden;
- }
- .right {
- right: 0;
- }
- .left {
- left: 0;
- }
- .circleProgress {
- width: 32px;
- height: 32px;
- border: 2px solid #FFFFFF;
- border-radius: 50%;
- position: absolute;
- top: 0;
- -webkit-transform: rotate(45deg);
- }
- .rightcircle {
- border-top: 2px solid #03A9F4;
- border-right: 2px solid #03A9F4;
- right: 0;
- -webkit-animation: circleProgressLoad_right 4s linear;
- /*动画停留在最后一帧*/
- animation-fill-mode: forwards;
- -moz-animation-fill-mode: forwards;
- -webkit-animation-fill-mode: forwards;
- -o-animation-fill-mode: forwards;
- }
- .leftcircle {
- border-bottom: 2px solid #03A9F4;
- border-left: 2px solid #03A9F4;
- left: 0;
- -webkit-animation: circleProgressLoad_left 4s linear;
- /*动画停留在最后一帧*/
- animation-fill-mode: forwards;
- -moz-animation-fill-mode: forwards;
- -webkit-animation-fill-mode: forwards;
- -o-animation-fill-mode: forwards;
- }
- @-webkit-keyframes circleProgressLoad_right {
- 0% {
- border-top: 2px solid #03A9F4;
- border-right: 2px solid #03A9F4;
- -webkit-transform: rotate(45deg);
- }
- 50% {
- border-top: 2px solid #03A9F4;
- border-right: 2px solid #03A9F4;
- border-left: 2px solid #FFFFFF;
- border-bottom: 2px solid #FFFFFF;
- -webkit-transform: rotate(225deg);
- }
- 100% {
- border-left: 2px solid #FFFFFF;
- border-bottom: 2px solid #FFFFFF;
- -webkit-transform: rotate(225deg);
- }
- }
- @-webkit-keyframes circleProgressLoad_left {
- 0% {
- border-bottom: 2px solid #03A9F4;
- border-left: 2px solid #03A9F4;
- -webkit-transform: rotate(45deg);
- }
- 50% {
- border-bottom: 2px solid #03A9F4;
- border-left: 2px solid #03A9F4;
- border-top: 2px solid #FFFFFF;
- border-right: 2px solid #FFFFFF;
- -webkit-transform: rotate(45deg);
- }
- 100% {
- border-top: 2px solid #FFFFFF;
- border-right: 2px solid #FFFFFF;
- -webkit-transform: rotate(225deg);
- }
- }
|