缩放并在页面打开时淡入淡出

时间:2013-09-14 08:12:12

标签: html css jquery-animate scale transition

第一期: 我一直在努力做到这一点,但没有任何工作。就像页面加载一样,我希望图像可以缩放并逐渐淡化并坐在那里。图像也是一个链接。

到目前为止,我没有任何动画的代码是

HTML ---

<a href="index.html"> 
    <img src="images/insandoutslogo.jpg" alt="" class="insandoutslogoimg" /> 
    <p1> Ins and Outs </p1>
</a>

的CSS ---

.insandoutslogoimg
{
    width: 210px;
    height: 210px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -112.5px;
    margin-left: -112.5px;
}
谢谢谢谢!

1 个答案:

答案 0 :(得分:1)

很难理解这个问题。但也许你看起来像这样:

.insandoutslogoimg {
  width: 210px;
  height: 210px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -112.5px;
  margin-left: -112.5px;

  animation: fadeInDown 2s ease;
}

@keyframes fadeInDown {

  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

CodePen demo

您还需要browser prefixes(CodePen使用Lea Verou -prefix-free