{"id":37539,"date":"2024-11-01T09:58:23","date_gmt":"2024-11-01T09:58:23","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37539"},"modified":"2024-11-01T11:02:19","modified_gmt":"2024-11-01T11:02:19","slug":"uwp-development-transition","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37539\/","title":{"rendered":"UWP Development, Transition"},"content":{"rendered":"<p>\n    UWP (Universal Windows Platform) is a platform for developing applications that run on Windows 10 and later.<br \/>\n    One of the powerful features of UWP is the &#8216;Transition&#8217; effects that create smooth visual elements and user interactions.<br \/>\n    Transition effects make screen transitions, state changes of elements, and user feedback more intuitive and enjoyable within the app.<br \/>\n    In this course, we will explore the concept of transition effects in UWP, the types of various transition effects, and how to implement them in practice.\n<\/p>\n<h2>Importance of Transition Effects<\/h2>\n<p>\n    Transition effects play a crucial role in enhancing user experience (UX). They visually convey information to users and<br \/>\n    help them understand what changes are taking place within the app. For example, using animations during screen transitions enables<br \/>\n    users to easily track which elements moved from where to where.<br \/>\n    This is an essential method for implementing a user-friendly interface.\n<\/p>\n<h2>Basic Transition Effects in UWP<\/h2>\n<p>\n    UWP allows the use of various transition effects. Here are a few representative transition effects:\n<\/p>\n<ul>\n<li>FadeInTransition: An effect where an element gradually appears<\/li>\n<li>FadeOutTransition: An effect where an element gradually disappears<\/li>\n<li>SlideInTransition: An effect where an element slides in from a specific direction<\/li>\n<li>SlideOutTransition: An effect where an element slides out to a specific direction<\/li>\n<li>ScaleTransform: An effect that adjusts the size of an element<\/li>\n<\/ul>\n<h2>How to Apply Transition Effects in UWP<\/h2>\n<p>\n    Now, let\u2019s take a step-by-step look at how to apply transition effects in UWP.<br \/>\n    Create a new UWP project using Visual Studio and follow the example code below.\n<\/p>\n<h3>1. Create a Project<\/h3>\n<p>\n    Create a new UWP app project in Visual Studio. Set the project name to &#8220;TransitionDemo&#8221;.\n<\/p>\n<h3>2. Set up the XAML File<\/h3>\n<p>\n    Open the MainPage.xaml file and add basic UI elements. Place the elements you want to apply transition effects to inside a <code>Grid<\/code>.\n<\/p>\n<pre><code>&lt;Page\n    x:Class=\"TransitionDemo.MainPage\"\n    xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n    xmlns:local=\"using:TransitionDemo\"\n    xmlns:d=\"http:\/\/schemas.microsoft.com\/expression\/blend\/2008\"\n    xmlns:mc=\"http:\/\/schemas.openxmlformats.org\/markup-compatibility\/2006\"\n    mc:Ignorable=\"d\"&gt;\n\n    &lt;Grid x:Name=\"LayoutRoot\"&gt;\n        &lt;Button x:Name=\"FadeButton\" Content=\"Fade In\" Click=\"FadeButton_Click\"&gt;&lt;\/Button&gt;\n        &lt;Rectangle x:Name=\"MyRectangle\" Width=\"200\" Height=\"200\" Fill=\"Blue\" Opacity=\"0\" \n                    VerticalAlignment=\"Center\" HorizontalAlignment=\"Center\"\/&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;<\/code><\/pre>\n<h3>3. Write Transition Effect Code<\/h3>\n<p>\n    Open the MainPage.xaml.cs file and add a Click event handler for the FadeButton.<br \/>\n    This handler implements the effect of the blue rectangle gradually appearing by applying the transition effect.\n<\/p>\n<pre><code>using System;\nusing Windows.UI.Xaml;\nusing Windows.UI.Xaml.Controls;\nusing Windows.UI.Xaml.Media.Animation;\n\nnamespace TransitionDemo\n{\n    public sealed partial class MainPage : Page\n    {\n        public MainPage()\n        {\n            this.InitializeComponent();\n        }\n\n        private void FadeButton_Click(object sender, RoutedEventArgs e)\n        {\n            DoubleAnimation fadeInAnimation = new DoubleAnimation();\n            fadeInAnimation.From = 0; \/\/ Initial opacity\n            fadeInAnimation.To = 1;   \/\/ Final opacity\n            fadeInAnimation.Duration = new Duration(TimeSpan.FromSeconds(2)); \/\/ Animation duration\n\n            Storyboard storyboard = new Storyboard();\n            storyboard.Children.Add(fadeInAnimation);\n            Storyboard.SetTarget(fadeInAnimation, MyRectangle); \/\/ Set animation target\n            Storyboard.SetTargetProperty(fadeInAnimation, \"Opacity\"); \/\/ Set animation property\n\n            storyboard.Begin(); \/\/ Start the animation\n        }\n    }\n}<\/code><\/pre>\n<h3>4. Run the App<\/h3>\n<p>\n    Now, run the app and click the &#8220;Fade In&#8221; button to see the rectangle gradually appearing.<br \/>\n    This is how we learned to apply transition effects in UWP. Additionally, let\u2019s implement some other transition effects briefly.\n<\/p>\n<h3>Implementing Various Transition Effects<\/h3>\n<p>\n    Now let&#8217;s add SlideInTransition and SlideOutTransition to implement more diverse transition effects.\n<\/p>\n<pre><code>&lt;Button x:Name=\"SlideButton\" Content=\"Slide In\" Click=\"SlideButton_Click\"&gt;&lt;\/Button&gt;\n&lt;Button x:Name=\"SlideOutButton\" Content=\"Slide Out\" Click=\"SlideOutButton_Click\"&gt;&lt;\/Button&gt;<\/code><\/pre>\n<h3>5. SlideIn Transition<\/h3>\n<pre><code>private void SlideButton_Click(object sender, RoutedEventArgs e)\n{\n    MyRectangle.RenderTransform = new TranslateTransform { X = -200 }; \/\/ Set initial position\n    DoubleAnimation slideInAnimation = new DoubleAnimation();\n    slideInAnimation.From = -200; \/\/ Slide starting position\n    slideInAnimation.To = 0; \/\/ Final position\n    slideInAnimation.Duration = new Duration(TimeSpan.FromSeconds(2));\n\n    Storyboard slideInStoryboard = new Storyboard();\n    slideInStoryboard.Children.Add(slideInAnimation);\n    Storyboard.SetTarget(slideInAnimation, MyRectangle);\n    Storyboard.SetTargetProperty(slideInAnimation, \"RenderTransform.(TranslateTransform.X)\");\n\n    MyRectangle.Opacity = 1; \/\/ Set to visible\n    slideInStoryboard.Begin();\n}<\/code><\/pre>\n<h3>6. SlideOut Transition<\/h3>\n<pre><code>private void SlideOutButton_Click(object sender, RoutedEventArgs e)\n{\n    DoubleAnimation slideOutAnimation = new DoubleAnimation();\n    slideOutAnimation.From = 0; \/\/ Slide starting position\n    slideOutAnimation.To = -200; \/\/ Final position\n    slideOutAnimation.Duration = new Duration(TimeSpan.FromSeconds(2));\n\n    Storyboard slideOutStoryboard = new Storyboard();\n    slideOutStoryboard.Children.Add(slideOutAnimation);\n    Storyboard.SetTarget(slideOutAnimation, MyRectangle);\n    Storyboard.SetTargetProperty(slideOutAnimation, \"RenderTransform.(TranslateTransform.X)\");\n\n    slideOutStoryboard.Completed += (s, a) =&gt; { MyRectangle.Opacity = 0; }; \/\/ Set to invisible after animation completes\n    slideOutStoryboard.Begin();\n}<\/code><\/pre>\n<h2>Advanced Transition Effects<\/h2>\n<p>\n    In addition to basic transition effects, UWP supports a variety of advanced transition effects.<br \/>\n    For example, it allows you to manage complex state transitions using the VisualStateManager.<br \/>\n    VisualStateManager enables you to define multiple visual states based on the app&#8217;s state and manage the transitions between these states.\n<\/p>\n<h3>State Transitions Using VisualStateManager<\/h3>\n<p>\n    The following example implements the functionality to transition to a different state when the button is clicked, using the VisualStateManager.\n<\/p>\n<pre><code>&lt;VisualStateManager.VisualStateGroups&gt;\n    &lt;VisualStateGroup x:Name=\"CommonStates\"&gt;\n        &lt;VisualState x:Name=\"Normal\"\/&gt;\n        &lt;VisualState x:Name=\"PointerOver\"&gt;\n            &lt;Storyboard&gt;\n                &lt;DoubleAnimation Storyboard.TargetName=\"MyRectangle\" Storyboard.TargetProperty=\"Opacity\" To=\"1\" Duration=\"0.2\"\/&gt;\n            &lt;\/Storyboard&gt;\n        &lt;\/VisualState&gt;\n        &lt;VisualState x:Name=\"Pressed\"&gt;\n            &lt;Storyboard&gt;\n                &lt;DoubleAnimation Storyboard.TargetName=\"MyRectangle\" Storyboard.TargetProperty=\"Opacity\" To=\"0\" Duration=\"0.2\"\/&gt;\n            &lt;\/Storyboard&gt;\n        &lt;\/VisualState&gt;\n    &lt;\/VisualStateGroup&gt;\n&lt;\/VisualStateManager.VisualStateGroups&gt;<\/code><\/pre>\n<p>\n    The above code is an example that changes the opacity of the rectangle depending on the button&#8217;s state.<br \/>\n    The transitions for the states Normal, PointerOver, and Pressed are defined through the VisualStateManager.\n<\/p>\n<h3>Conclusion<\/h3>\n<p>\n    Transition effects in UWP are an important element in improving user experience.<br \/>\n    By providing smooth visual transitions within the application, users can naturally perceive various state changes and interactions.<br \/>\n    Based on what we learned in this course about applying transition effects in UWP, from basic to advanced concepts,<br \/>\n    you will be equipped to develop more innovative applications.\n<\/p>\n<p>\n    Thank you! If you have any questions about UWP development and transition effects, please leave a comment.<br \/>\n    I wish you much success in your future development journey.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>UWP (Universal Windows Platform) is a platform for developing applications that run on Windows 10 and later. One of the powerful features of UWP is the &#8216;Transition&#8217; effects that create smooth visual elements and user interactions. Transition effects make screen transitions, state changes of elements, and user feedback more intuitive and enjoyable within the app. &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37539\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, Transition&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[115],"tags":[],"class_list":["post-37539","post","type-post","status-publish","format-standard","hentry","category-uwp-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>UWP Development, Transition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/37539\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, Transition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"UWP (Universal Windows Platform) is a platform for developing applications that run on Windows 10 and later. One of the powerful features of UWP is the &#8216;Transition&#8217; effects that create smooth visual elements and user interactions. Transition effects make screen transitions, state changes of elements, and user feedback more intuitive and enjoyable within the app. &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, Transition&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37539\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:58:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:19+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37539\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37539\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, Transition\",\"datePublished\":\"2024-11-01T09:58:23+00:00\",\"dateModified\":\"2024-11-01T11:02:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37539\/\"},\"wordCount\":584,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37539\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37539\/\",\"name\":\"UWP Development, Transition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:58:23+00:00\",\"dateModified\":\"2024-11-01T11:02:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37539\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37539\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37539\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, Transition\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"UWP Development, Transition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/37539\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, Transition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"UWP (Universal Windows Platform) is a platform for developing applications that run on Windows 10 and later. One of the powerful features of UWP is the &#8216;Transition&#8217; effects that create smooth visual elements and user interactions. Transition effects make screen transitions, state changes of elements, and user feedback more intuitive and enjoyable within the app. &hellip; \ub354 \ubcf4\uae30 \"UWP Development, Transition\"","og_url":"https:\/\/atmokpo.com\/w\/37539\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:58:23+00:00","article_modified_time":"2024-11-01T11:02:19+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37539\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37539\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, Transition","datePublished":"2024-11-01T09:58:23+00:00","dateModified":"2024-11-01T11:02:19+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37539\/"},"wordCount":584,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37539\/","url":"https:\/\/atmokpo.com\/w\/37539\/","name":"UWP Development, Transition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:58:23+00:00","dateModified":"2024-11-01T11:02:19+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37539\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37539\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37539\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, Transition"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37539","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=37539"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37539\/revisions"}],"predecessor-version":[{"id":37540,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37539\/revisions\/37540"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37539"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37539"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37539"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}