>  기사  >  웹 프론트엔드  >  HTML5가 로드될 때 애니메이션 효과 제작 대기 중

HTML5가 로드될 때 애니메이션 효과 제작 대기 중

巴扎黑
巴扎黑원래의
2017-08-07 15:04:323294검색

이 기사에서는 예제 코드를 통해 애니메이션 효과 로딩을 기다리는 HTML5에 대한 완벽한 솔루션을 소개합니다. 관심 있는 친구들은 이를 참고할 수 있습니다.

더 이상 헛소리하지 마세요. 구체적인 코드는 다음과 같습니다.


<p class="loading">
     <p>100<span></span></p>
</p>


  *{margin:0;padding:0;}
    .loading{
          height:100%;width:100%;position:fixed;background:rgba(255,255,255,1);
    }
    .loading >p{position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;height:160px;width:160px;text-align: center;line-height:160px;font-size: 30px;color:#f00;}
    .loading p span{position:absolute;display:block;height:140px;width:140px;margin:10px;border-radius:50%;-webkit-box-shadow:0 2px 3px rgba(102,197,37,0.8); animation:loading ease 1s infinite;left:0;top:0;}
    @keyframes loading{
       0%{transform:rotate(0deg)}
       100%{transform:rotate(360deg)}
    }


<p class="loading">
     <p>
  <i></i>
  <i></i>
  <i></i>
  <i></i>
  <i></i>
</p>
</p>


 *{margin:0;padding:0;}
    .loading{
          height:100%;width:100%;position:fixed;background:rgba(255,255,255,0.95);
    }
    .loading >p{position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;height:30px;width:120px;}
    .loading >p i{display: block;float:left;margin:0 5px; width:5px;height:30px;background:#f00;transform:scaleY(0.3);
                   animation:loading 1s ease infinite alternate;
    }
.loading >p i:nth-child(2){animation-delay:0.1s;}
.loading >p i:nth-child(3){animation-delay:0.2s;}
.loading >p i:nth-child(4){animation-delay:0.3s;}
.loading >p i:nth-child(5){animation-delay:0.4s;}
    @keyframes loading{
           0,40%,100%{transform:scaleY(0.3);}
           20%{transform:scaleY(1);}
    }

사실 제가 하고 싶은 건 진행률 표시줄 효과를 로드하는 것인데, 가짜 진행률 표시줄이 너무 심하고 특별히 별 건 없습니다. 좋은 방법, 항상 사진이 새는 느낌이 듭니다.

이것이 코드입니다. 완벽한 솔루션이 있습니다.


rreee

위 내용은 HTML5가 로드될 때 애니메이션 효과 제작 대기 중의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.