>  기사  >  웹 프론트엔드  >  css3中为什么要定位,动画才能动?_html/css_WEB-ITnose

css3中为什么要定位,动画才能动?_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:36:021378검색

div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:myfirst 5s;
}

@keyframes myfirst
{
0%   {background:red; left:0px; top:0px;}
25%  {background:yellow; left:200px; top:0px;}
50%  {background:blue; left:200px; top:200px;}
75%  {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}


回复讨论(解决方案)

设置了left、top 才能生效

css本来就是只有设置了position,left和top才能生效的

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