CSS에서 애니메이션 효과를 얻기 위한 속성: 1. 요소에 대한 애니메이션 효과를 설정하기 위해 "@keyframes" 규칙과 함께 사용할 수 있는 "animation" 속성 2. 요소에 과도한 애니메이션을 설정할 수 있는 "transition" 속성 요소 효과.
이 튜토리얼의 운영 환경: Windows 10 시스템, CSS3&&HTML5 버전, Dell G3 컴퓨터.
css3에서 애니메이션 효과를 얻기 위한 속성은 무엇인가요?
Css에서 애니메이션 효과를 얻으려면 애니메이션 속성과 전환 속성을 사용할 수 있습니다.
1. 애니메이션 속성은 6개의 애니메이션 속성을 설정하는 데 사용되는 단축 속성입니다. 구문은 다음과 같습니다.
animation: name duration timing-function delay iteration-count direction;
속성 값은 다음과 같습니다.
예는 다음과 같습니다.
<html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s infinite; -webkit-animation:mymove 5s infinite; /*Safari and Chrome*/ } @keyframes mymove { from {left:0px;} to {left:200px;} } @-webkit-keyframes mymove /*Safari and Chrome*/ { from {left:0px;} to {left:200px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation 属性。</p> <div></div> </body> </html>
출력 결과:
2 , 전환 속성은 4개의 전환 속성을 설정하는 데 사용되는 단축 속성입니다. 구문은 다음과 같습니다.
transition: property duration timing-function delay;
속성 값은 다음과 같습니다.
예는 다음과 같습니다. :
<html> <head> <style> div { width:100px; height:100px; background:blue; transition:width 2s; -moz-transition:width 2s; /* Firefox 4 */ -webkit-transition:width 2s; /* Safari and Chrome */ -o-transition:width 2s; /* Opera */ } div:hover { width:300px; } </style> </head> <body> <div></div> <p>请把鼠标指针移动到蓝色的 div 元素上,就可以看到过渡效果。</p> <p><b>注释:</b>本例在 Internet Explorer 中无效。</p> </body> </html>
출력 결과:
(학습 영상 공유: css 영상 튜토리얼)
위 내용은 CSS3에서 애니메이션 효과를 구현하는 속성은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!