WordPressの子テーマにアニメーションを配置する方法 - TechRepublic

WordPressの子テーマにアニメーションを配置する方法 - TechRepublic

WordPressの子テーマにアニメーションを配置する方法

spencer1621515293 ·約4年4ヶ月

こんにちは。次のアニメーション コードを子テーマに配置するにはどうすればよいですか。

.flip-horizo​​ntal-bottom {
-webkit-animation: flip-horizo​​ntal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) 両方;
animation: flip-horizo​​ntal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) 両方;
}

* —————————————-
* アニメーション flip-horizo​​ntal-bottom
* —————————————-
*/
@-webkit-keyframes flip-horizo​​ntal-bottom {
0% {
-webkit-transform: rotateX(0);
transform: rotateX(0);
}
100% {
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);
}
}
@keyframes flip-horizo​​ntal-bottom {
0% {
-webkit-transform: rotateX(0);
transform: rotateX(0);
}
100% {
-webkit-transform: rotateX(-180deg);
transform: rotateX(-180deg);
}
}

Tagged: