課程
/前端開發(fā)
/JavaScript
/H5+JS+CSS3 實現(xiàn)圣誕情緣
為什么第一個動畫出不來啊
2015-12-21
源自:H5+JS+CSS3 實現(xiàn)圣誕情緣 3-2
正在回答
.birdFly {
? ? ? ? /*寫法1*/
? ? ? ? -moz-animation: bird-slow 400ms steps(1,start) infinite;
? ? ? ??
? ? ? ? /*寫法2*/
? ? ? ? -webkit-animation-name: bird-slow;
? ? ? ? -webkit-animation-duration: 400ms;
? ? ? ? -webkit-animation-timing-function: steps(3);
? ? ? ? -webkit-animation-iteration-count: infinite;
? ? }
? ? @-webkit-keyframes bird-slow{
? ? ? ? 0%{
? ? ? ? ? ? background-position:-0px 0px;
? ? ? ? }
? ? ? ? 100%{
? ? ? ? ? ? background-position:-273px 0px;
? ??
? ? @-moz-keyframes bird-slow{
? ? ? ? ? ? background-position:-182px 0px;
? ? ? ? 50%{
? ? ? ? ? ? background-position:0px 0px;
? ? ? ? 75%{
? ? ? ? ? ? background-position:-91px 0px;
幕_女神
常過無痕 回復(fù) 幕_女神
zhongkeyuan
?.birdFly { -webkit-animation: bird-slow 400ms steps(3,start) infinite;}
@-webkit-keyframes bird-slow {
? ? ? ? 0% {
? ? ? ? ? ? background-position: -0px 0px;
?? ? ? ?}
? ? ? ? 100% {
? ? ? ? ? ? background-position: -273px 0px;
?@-webkit-keyframes bird-slow {
shrub__
是不是沒有引入文件
因為沒有引進文件css和JavaScript。
舉報
為圣誕節(jié)準備的H5+JS+CSS特效案例教程,實現(xiàn)靜與動的結(jié)合
1 回答css幀動畫
3 回答動畫效果出不來
4 回答深入理解CSS3 Animation 幀動畫
1 回答動畫效果設(shè)置了time=10000ms,可是為什么動畫還是一瞬間完成了
1 回答小女孩選擇3D球時的動畫怎么做的
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2015-12-24
.birdFly {
? ? ? ? /*寫法1*/
? ? ? ? -moz-animation: bird-slow 400ms steps(1,start) infinite;
? ? ? ??
? ? ? ? /*寫法2*/
? ? ? ? -webkit-animation-name: bird-slow;
? ? ? ? -webkit-animation-duration: 400ms;
? ? ? ? -webkit-animation-timing-function: steps(3);
? ? ? ? -webkit-animation-iteration-count: infinite;
? ? ? ??
? ? ? ??
? ? }
? ? @-webkit-keyframes bird-slow{
? ? ? ? 0%{
? ? ? ? ? ? background-position:-0px 0px;
? ? ? ? }
? ? ? ? 100%{
? ? ? ? ? ? background-position:-273px 0px;
? ? ? ? }
? ? }
? ??
? ? @-moz-keyframes bird-slow{
? ? ? ? 0%{
? ? ? ? ? ? background-position:-182px 0px;
? ? ? ? }
? ? ? ? 50%{
? ? ? ? ? ? background-position:0px 0px;
? ? ? ? }
? ? ? ? 75%{
? ? ? ? ? ? background-position:-91px 0px;
? ? ? ? }
? ? ? ? 100%{
? ? ? ? ? ? background-position:-182px 0px;
? ? ? ? }
? ? }
2015-12-23
?.birdFly { -webkit-animation: bird-slow 400ms steps(3,start) infinite;}
@-webkit-keyframes bird-slow {
? ? ? ? 0% {
? ? ? ? ? ? background-position: -0px 0px;
?? ? ? ?}
? ? ? ? 100% {
? ? ? ? ? ? background-position: -273px 0px;
? ? ? ? }
? ? }
2015-12-22
?@-webkit-keyframes bird-slow {
? ? ? ? 0% {
? ? ? ? ? ? background-position: -0px 0px;
? ? ? ? }
? ? ? ? 100% {
? ? ? ? ? ? background-position: -273px 0px;
? ? ? ? }
? ? }
2015-12-21
是不是沒有引入文件
2015-12-21
因為沒有引進文件css和JavaScript。