例1のアニメ設定
【id=ani_test_01】
animation:ta_1c 2s linear 7s 1.98;
animation-fill-mode:both;
【before】
animation:ta_1 1s linear 5s 1;
animation-fill-mode:both;
【after】
animation:ta_1b 2s linear 1s 2;
例1のキーフレーム
@keyframes ta_1{
0%{top:0px;}
100%{top:-40px;}
}
@keyframes ta_1b{
0%{top:-5px;left:-5px;}
25%{top:40px;left:-5px;}
50%{top:40px;left:225px;}
75%{top:-5px;left:225px;}
100%{top:-5px;left:-5px;}
}
@keyframes ta_1c{
0%{transform:rotateZ(0deg);}
100%{transform:rotateZ(360deg);}
}
例2のアニメ設定
【.tdeb】
transition:all 1s linear;
【.tdeb:hover】
width:200px;
【.atc1】テスト2A
animation:abcd1 2s linear 5 alternate;
【.atc2】テスト2B
animation:abcd2 2s linear 5 alternate;
【.atc1b】テスト3A
animation:abcd1 2s linear infinite alternate;
【.atc2b】テスト3B
animation:abcd2 2s linear infinite alternate;
【.atc1c】テスト4A
animation:abcd1 2s linear 5;
【.atc2c】テスト4B
animation:abcd2 2s linear 5;
例2のキーフレーム
@keyframes abcd1{
0%{background-color:#DDD;}
50%{background-color:#9F9;}
100%{background-color:#F99;}
}
@keyframes abcd2{
0%{width:150px;}
100%{width:120px;}
}
例3のアニメ設定
【.tdeb2:hover】
animation:ha1 1s linear infinite alternate;
【.atc1】テスト5A
animation:abcd1 2s linear 5 alternate;
【.atc2】テスト5B
animation:abcd2 2s linear 5 alternate;
【.atc1b】テスト6A
animation:abcd1 2s linear infinite alternate;
【.atc2b】テスト6B
animation:abcd2 2s linear infinite alternate;
【.atc1c】テスト7A
animation:abcd1 2s linear 5;
【.atc2c】テスト7B
animation:abcd2 2s linear 5;
例3のキーフレーム
@keyframes ha1{
0%{width:80px;}
100%{width:90px;}
}
@keyframes abcd1{
0%{background-color:#DDD;}
50%{background-color:#9F9;}
100%{background-color:#F99;}
}
@keyframes abcd2{
0%{width:150px;}
100%{width:120px;}
}
例4のアニメ設定
【.tdeb3:hover】
animation:ha1 1s linear 2 alternate;
【.tdeb4:hover】
animation:ha1 1s linear 2 alternate;
【.atc1】テスト9A 9C
animation:abcd1 2s linear 5 alternate;
【.atc1b】テスト10A 10C
animation:abcd1 2s linear infinite alternate;
【.atc1c】テスト11A 11C
animation:abcd1 2s linear 5;
例4のキーフレーム
@keyframes ha1{
0%{width:80px;}
100%{width:90px;}
}
@keyframes abcd1{
0%{background-color:#DDD;}
50%{background-color:#9F9;}
100%{background-color:#F99;}
}
コピーライト
Copyright © Haramori Laboratory of Information Technology 2015 All rights reserved.