{"id":25349,"date":"2024-06-01T14:27:32","date_gmt":"2024-06-01T05:27:32","guid":{"rendered":"http:\/\/www.tyosuke20xx.com\/blog\/?p=25349"},"modified":"2024-06-01T14:27:33","modified_gmt":"2024-06-01T05:27:33","slug":"css-keyframe","status":"publish","type":"post","link":"http:\/\/www.tyosuke20xx.com\/blog\/?p=25349","title":{"rendered":"CSS @keyframe"},"content":{"rendered":"\n<p>index.html<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html lang=\"ja\">\n\n&lt;head>\n    &lt;meta charset=\"UTF-8\">\n    &lt;meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    &lt;title>My Animation&lt;\/title>\n    &lt;link rel=\"stylesheet\" href=\"style.css\">\n&lt;\/head>\n\n&lt;body>\n    &lt;div class=\"box\">&lt;\/div>\n&lt;\/body>\n\n&lt;\/html><\/code><\/pre>\n\n\n\n<p>style.css<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>@charset \"utf-8\";\n\n.box {\n    width: 80px;\n    height: 80px;\n    background: pink;\n    animation-name: move-around;\n    animation-duration: 4s;\n    animation-iteration-count: infinite;\n}\n\n@keyframes move-around {\n    25% {\n        transform: translate(100px, 0);\n        border-radius: 0;\n    }\n\n    50% {\n        transform: translate(100px, 100px);\n        border-radius: 50%;\n    }\n\n    75% {\n        transform: translate(0, 100px);\n        border-radius: 0;\n    }\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>index.html style.css<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[81,4],"tags":[30,3],"class_list":["post-25349","post","type-post","status-publish","format-standard","hentry","category-css","category-programming","tag-css","tag-programming"],"aioseo_notices":[],"jetpack_featured_media_url":"","_links":{"self":[{"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=\/wp\/v2\/posts\/25349","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=25349"}],"version-history":[{"count":1,"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=\/wp\/v2\/posts\/25349\/revisions"}],"predecessor-version":[{"id":25350,"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=\/wp\/v2\/posts\/25349\/revisions\/25350"}],"wp:attachment":[{"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=25349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=25349"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.tyosuke20xx.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=25349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}