ReceiverLogin.css 771 B

123456789101112131415161718192021222324
  1. body{
  2. background: url("../img/1.jpg");
  3. animation-name:myfirst;
  4. animation-duration:12s;
  5. /*变换时间*/
  6. animation-delay:2s;
  7. /*动画开始时间*/
  8. animation-iteration-count:infinite;
  9. /*下一周期循环播放*/
  10. animation-play-state:running;
  11. /*动画开始运行*/
  12. }
  13. @keyframes myfirst
  14. {
  15. 0% {background:url("../img/1.jpg");none}
  16. 34% {background:url("../img/2.jpg");none}
  17. 67% {background:url("../img/3.jpg");none}
  18. 100% {background:url("../img/1.jpg");none}
  19. }
  20. .form{background: rgba(255,255,255,0.2);width:400px;margin:120px auto;}
  21. /*阴影*/
  22. .fa{display: inline-block;top: 27px;left: 6px;position: relative;color: #ccc;}
  23. input[type="text"],input[type="password"]{padding-left:26px;}
  24. .checkbox{padding-left:21px;}