4

我正在学习如何制作 css3 动画。我怎样才能让这个盒子在它向下移动时淡入淡出?

示例:http: //jsfiddle.net/RtWTN/1/

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
  animation: mymove 3s ease-out forwards;
  animation-iteration-count: 3;
}

@keyframes mymove
{ 
  from { top: 0px;}
  to { top: 200px;}
}
</style>
</head>
<body>


<div></div>

</body>
</html>
4

2 回答 2

5

您可以向动画关键帧添加多个规则。

{
from {top:0px; opacity: 0;}
to {top:200px; opacity: 1;}
}

http://jsfiddle.net/T2DnG/1/

于 2013-06-26T14:05:48.223 回答
1

动画top属性对浏览器性能不利。只需使用transform: translateY(<value>),此解决方案的性能要高得多。

@keyframes mymove
{
  from {transform: translateY(0); opacity: 0;}
  to { transform: translateY(200px); opacity: 1;}
}

浏览器针对变换和不透明度进行了优化

于 2019-02-01T02:01:18.543 回答