从左侧CSS动画中滑入

时间:2015-12-08 15:18:20

标签: html css css-animations

我想制作一个简单的动画,当页面加载时,我的徽标应该从框的左侧到右侧动画。我尝试了很多版本,但还没有成功。

HTML

<body>

<div>
<img src="logo.png" alt="logo" style="width:170px;height:120px;">
</div>
</body>

CSS

div
{
 width:640px;
 height:175px;
 background:blue;
 -webkit-transition: all 1s ease-in-out;
 -moz-transition: all 1s ease-in-out;
 -o-transition: all 1s ease-in-out;
 -ms-transition: all 1s ease-in-out;
 position:absolute;
}
div img
{
 -webkit-transform: translate(3em,0);
 -moz-transform: translate(3em,0);
 -o-transform: translate(3em,0);
 -ms-transform: translate(3em,0);
}

2 个答案:

答案 0 :(得分:13)

尝试使用关键帧。

&#13;
&#13;
div {
  width: 50px;
  height: 40px;
  background: blue;
  position: relative;
  left: 500px;
  -webkit-animation: slideIn 2s forwards;
  -moz-animation: slideIn 2s forwards;
  animation: slideIn 2s forwards;
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(-900px);
  }
  100% {
    transform: translateX(0);
  }
}
@-moz-keyframes slideIn {
  0% {
    transform: translateX(-900px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(-900px);
  }
  100% {
    transform: translateX(0);
  }
}
&#13;
<div></div>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您需要使用动画而不是过渡。在某些事件上触发过渡效果,例如添加类或悬停的点击。

div img {
    animation: example 1s ease-in-out forwards;
}

@keyframes example {
    from {transform: transition(0,0)}
    to {transform: transition(3em,0)}
}

现在你必须为它添加前缀,webkit,moz等。

有关css3中关键帧动画的基本知识: http://www.w3schools.com/css/css3_animations.asp