分享

javascript – Microsoft徽标动画v2

 印度阿三17 2019-07-06

我更新了我的animation微软徽标.它在CodePen上可用.总的来说,除了一件事,我现在对它非常满意.

我似乎无法弄清楚如何停止动画,所以徽标看起来正确.我尝试将延迟设置为6000ms = 6s =动画的长度,但它看起来很偏僻.现在它设置为5900ms.关于这个的任何提示?

我想知道的另一件事是,在一段时间之后你会如何播放YouTube视频,比如文字何时出现?谢谢!

var playState = '-webkit-animation-play-state';

$(".boxes").css(playState, "running");
setTimeout(function() {
  $(".boxes").css(playState, "paused");
}, 5900);
body {
  background: hsl(30, 20%, 20%);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.boxes {
  -webkit-animation: logo 6s 1 forwards;
  animation: logo 6s 1 forwards;
  position: absolute;
}

.box {
  -webkit-animation: scaling 1.5s cubic-bezier(.1,.95,.7,.8) 4;
  animation: scaling 1.5s cubic-bezier(.1,.95,.7,.8) 4;
  height: 50px;
  width: 50px;
}

.brand {
  -webkit-animation: fadein 2s ease 4.5s forwards;
  animation: fadein 2s ease 4.5s forwards;
  display: inline;
  font-size: 36px;
  margin: 24px 0 0 0;
  opacity: 0;
  position: relative;
  top: -36px;
  text-align: center;
  z-index: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 100vh;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: center;
}

.intro {
  text-align: center;
}

.logo {
  -webkit-animation: moveLeft .5s linear 4.5s forwards;
  animation: moveLeft .5s linear 4.5s forwards;
  display: inline-block;
  height: 100px;
  left: 100px;
  margin: 0 auto;
  position: relative;
  width: 100px;
  z-index: 1;
}

.player {
  display:none;
}

#green {background: #7cbb00;}
#yellow {background: #ffbb00;}
#blue {background: #00a1f1;}
#red {background: #f65314;}

#animateGreen {animation-delay: 4.5s;}
#animateYellow {animation-delay: 3s;}
#animateBlue {animation-delay: 1.5s;}
#animateRed {animation-delay: 0s;}

@keyframes fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes logo {
  0% {left: 0px; top: 0px; transform: rotate(0deg)}
  25% {left: 50px; top: 0px; transform: rotate(-180deg)}
  50% {left: 50px; top: 50px; transform: rotate(-360deg)}
  75% {left: 0px; top: 50px; transform: rotate(-540deg)}
  100% {left: 0px; top: 0px; transform: rotate(-720deg)}
}

@keyframes moveLeft {
  from {padding-right: 0; left: 100px;}
  to {padding-right: 50px; left: 0;}
}

@keyframes scaling {
  0%, 100% {transform: scale(1)}
  50% {transform: scale(.5)}
}
<head><script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script></head>

<div class="flex">
  <div class="intro">
    <div class="logo">
      <div class="boxes" id="animateGreen">
        <div class="box" id="green">
        </div>
      </div>
      <div class="boxes" id="animateYellow">
        <div class="box" id="yellow">
        </div>
      </div>
      <div class="boxes" id="animateBlue">
        <div class="box" id="blue">
        </div>
      </div>
      <div class="boxes" id="animateRed">
        <div class="box" id="red">
        </div>
      </div>
    </div>
    <div class="brand">
      Microsoft
    </div>
  </div>
</div>

<iframe width="560" height="315" src="https://www./embed/I3Ak5VgyEoc?autoplay=1" class="player"></iframe>

解决方法:

而不是使用jQuery / JavaScript来停止动画,更好的方法是为每个盒子指定一个不同的动画,以你想要的位置结束它们.

Example CodePen

至于在文本出现时播放YouTube视频,如果您参考YouTube API Docs,jQuery中就会出现这样的情况:

setTimeout(function(){
    //play the youtube video (#playerId) is the id of your youtube video element
    $('#playerId').get(0).playVideo();
} , 4500); //4500 is the delay in ms
来源:https://www./content-1-305251.html

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多