{"id":22431,"date":"2020-09-11T00:20:11","date_gmt":"2020-09-11T07:20:11","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22431"},"modified":"2020-09-11T00:20:15","modified_gmt":"2020-09-11T07:20:15","slug":"css-keyframes","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/css-keyframes\/","title":{"rendered":"CSS Keyframes"},"content":{"rendered":"\n<p>Building animations is a breeze with CSS. And the fun part is that you don&#8217;t need any third party frameworks or plugins.&nbsp;<\/p>\n\n\n\n<p>The @keyframes CSS rule is a tool we need under our belt to build these animations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>@keyframes<\/strong><strong> Syntax<\/strong><\/h2>\n\n\n\n<p>The @keyframes is a CSS at-rule. At-rules tells how CSS should behave. There are many other at-rules such as @viewport, @supports among others.<\/p>\n\n\n\n<p>We define a @keyframes rule with the following syntax.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>@keyframes &lt;name&gt; {\n    from {\n    \/* start details here *\/\n    }\n\n    to {\n    \/* end details here *\/\n    }\n}\n<\/pre><\/div>\n\n\n\n<p>We can get more refined animation declarations by specifying percentages instead of keywords.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>@keyframes &lt;name&gt; {\n  0% { }\n  50% { }\n  100% { }\n}\n<\/pre><\/div>\n\n\n\n<p><strong>Note<\/strong>: In order to use our newly created keyframe we need to add it as a value of the <code>animation-name <\/code>property. We could also set the <code>animation-duration<\/code> to specify the duration of our declared @keyframes animation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Magic Ball Example<\/strong><\/h2>\n\n\n\n<p>Let&#8217;s go ahead and make a magic ball appear and disappear. Please refer to the accompanying <a href=\"https:\/\/codepen.io\/fbohz-the-decoder\/pen\/OJNxrvX\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Codepen<\/a> if you get lost at any point.<\/p>\n\n\n\n<p>The first thing we need to do is define our animation. We&#8217;ll name it magic-ball:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>@keyframes magic-ball {\n  from {\n    background-color: limegreen;\n  }\n  to {\n    background-color: blueviolet;\n  }\n}\n<\/pre><\/div>\n\n\n\n<p>Here basically we are changing the background color from limegreen to blueviolet. This can be applied to any element, but we&#8217;ll go ahead and apply it to a circle.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>.circle {\n  width: 10rem;\n  height: 10rem;\n  border-radius: 50%;\n  animation-name: magic-ball;\n  animation-duration: 4s;\n}\n<\/pre><\/div>\n\n\n\n<p><strong>Do not forget<\/strong> that in order for our keyframe animation to work we need to add it as a value of the <code>animation-name<\/code> property and set an animation duration in seconds by using <code>animation-duration<\/code>.\u00a0<\/p>\n\n\n\n<p>With this animation, now our ball is appearing and disappearing!\ud83d\udca5<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"254\" height=\"166\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/92069334-ae057480-ed6e-11ea-9e22-9bffdf1c7b1b.gif\" alt=\"\" class=\"wp-image-22432\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Flash Sale Example<\/strong><\/h2>\n\n\n\n<p>Let&#8217;s go ahead and create another animation. This time we\u2019ll animate a square and create a moving effect. We will name our animation moveIn and in this case we&#8217;ll use percentages.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>@keyframes moveIn {\n  0% {\n    opacity: 0;\n    transform: translateY(3rem);\n  }\n  100% {\n    opacity: 1;\n    transform: translate(0);\n  }\n}\n<\/pre><\/div>\n\n\n\n<p>Opacity is pretty much our transparency. So we can apply this newly created animation to our square&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>.square {\n  width: 10rem;\n  height: 10rem;\n  background-color: greenyellow;\n  animation-name: moveIn;\n  animation-duration: 4s;\n}\n<\/pre><\/div>\n\n\n\n<p>You can see how with very little we have accomplished a fine effect!<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"180\" height=\"266\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/92069332-ac3bb100-ed6e-11ea-8588-7f7d5f6e5000.gif\" alt=\"\" class=\"wp-image-22433\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>You can continue your journey on animations by reading the <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/CSS\/CSS_Animations\/Using_CSS_animations\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">CSS documentation on animations<\/a>. Also note, we only referred to one way to refine our animations by using its duration. There are many more <a href=\"https:\/\/www.freecodecamp.org\/news\/how-to-use-animations-in-css\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">animation sub-properties<\/a> worth looking at!<\/p>\n\n\n\n<p>Finally, do have in mind that not all properties can be animated. Look at this exhaustive list of <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/CSS\/CSS_animated_properties\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">animated properties<\/a>.<br><\/p>\n","protected":false},"excerpt":{"rendered":"Building animations is a breeze with CSS. And the fun part is that you don't need any third party frameworks or plugins.&nbsp; The @keyframes CSS rule is a tool we need under our belt to build these animations. @keyframes Syntax The @keyframes is a CSS at-rule. At-rules tells how CSS should behave. There are many&hellip;","protected":false},"author":86,"featured_media":2619,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17287],"tags":[],"class_list":{"0":"post-22431","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-css"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"CSS","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":[]},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>CSS Keyframes | Career Karma<\/title>\n<meta name=\"description\" content=\"Do you know how to make animations using CSS? Learn how to define your own animations using keyframes! Learn CSS with CareerKarma.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/css-keyframes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Keyframes\" \/>\n<meta property=\"og:description\" content=\"Do you know how to make animations using CSS? Learn how to define your own animations using keyframes! Learn CSS with CareerKarma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/css-keyframes\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-11T07:20:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-11T07:20:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/lee-campbell-86958-unsplash-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"801\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Felipe Boh\u00f3rquez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Felipe Boh\u00f3rquez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/\"},\"author\":{\"name\":\"Felipe Boh\u00f3rquez\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e2cbf72dcbfaf9e81a8b6a38c1bd4220\"},\"headline\":\"CSS Keyframes\",\"datePublished\":\"2020-09-11T07:20:11+00:00\",\"dateModified\":\"2020-09-11T07:20:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/\"},\"wordCount\":367,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/lee-campbell-86958-unsplash-1.jpg\",\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/\",\"name\":\"CSS Keyframes | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/lee-campbell-86958-unsplash-1.jpg\",\"datePublished\":\"2020-09-11T07:20:11+00:00\",\"dateModified\":\"2020-09-11T07:20:15+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e2cbf72dcbfaf9e81a8b6a38c1bd4220\"},\"description\":\"Do you know how to make animations using CSS? Learn how to define your own animations using keyframes! Learn CSS with CareerKarma.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/lee-campbell-86958-unsplash-1.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/lee-campbell-86958-unsplash-1.jpg\",\"width\":1200,\"height\":801,\"caption\":\"Person facing monitor while typing during daytime\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css-keyframes\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/css\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CSS Keyframes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e2cbf72dcbfaf9e81a8b6a38c1bd4220\",\"name\":\"Felipe Boh\u00f3rquez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png\",\"caption\":\"Felipe Boh\u00f3rquez\"},\"description\":\"Felipe Boh\u00f3rquez is a Software Engineer and technical writer at Career Karma. He covers all things frontend and backend development.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/felipe-bohorquez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"CSS Keyframes | Career Karma","description":"Do you know how to make animations using CSS? Learn how to define your own animations using keyframes! Learn CSS with CareerKarma.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/careerkarma.com\/blog\/css-keyframes\/","og_locale":"en_US","og_type":"article","og_title":"CSS Keyframes","og_description":"Do you know how to make animations using CSS? Learn how to define your own animations using keyframes! Learn CSS with CareerKarma.","og_url":"https:\/\/careerkarma.com\/blog\/css-keyframes\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-11T07:20:11+00:00","article_modified_time":"2020-09-11T07:20:15+00:00","og_image":[{"width":1200,"height":801,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/lee-campbell-86958-unsplash-1.jpg","type":"image\/jpeg"}],"author":"Felipe Boh\u00f3rquez","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Felipe Boh\u00f3rquez","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/"},"author":{"name":"Felipe Boh\u00f3rquez","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e2cbf72dcbfaf9e81a8b6a38c1bd4220"},"headline":"CSS Keyframes","datePublished":"2020-09-11T07:20:11+00:00","dateModified":"2020-09-11T07:20:15+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/"},"wordCount":367,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/lee-campbell-86958-unsplash-1.jpg","articleSection":["CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/css-keyframes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/","url":"https:\/\/careerkarma.com\/blog\/css-keyframes\/","name":"CSS Keyframes | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/lee-campbell-86958-unsplash-1.jpg","datePublished":"2020-09-11T07:20:11+00:00","dateModified":"2020-09-11T07:20:15+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e2cbf72dcbfaf9e81a8b6a38c1bd4220"},"description":"Do you know how to make animations using CSS? Learn how to define your own animations using keyframes! Learn CSS with CareerKarma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/css-keyframes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/lee-campbell-86958-unsplash-1.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/lee-campbell-86958-unsplash-1.jpg","width":1200,"height":801,"caption":"Person facing monitor while typing during daytime"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/css-keyframes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"CSS","item":"https:\/\/careerkarma.com\/blog\/css\/"},{"@type":"ListItem","position":3,"name":"CSS Keyframes"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e2cbf72dcbfaf9e81a8b6a38c1bd4220","name":"Felipe Boh\u00f3rquez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png","caption":"Felipe Boh\u00f3rquez"},"description":"Felipe Boh\u00f3rquez is a Software Engineer and technical writer at Career Karma. He covers all things frontend and backend development.","url":"https:\/\/careerkarma.com\/blog\/author\/felipe-bohorquez\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22431","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/86"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=22431"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22431\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/2619"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22431"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22431"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22431"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}