{"id":74335,"date":"2020-01-17T12:17:38","date_gmt":"2020-01-17T06:47:38","guid":{"rendered":"https:\/\/www.vskills.in\/certification\/tutorial\/?p=74335"},"modified":"2024-04-12T14:23:26","modified_gmt":"2024-04-12T08:53:26","slug":"2d-and-3d-transformation","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/","title":{"rendered":"2D and 3D Transformation"},"content":{"rendered":"<p><strong>2D Transformation<\/strong><\/p>\n<p>CSS3 transforms enables to translate, rotate, scale, and skew elements. A transformation is an effect that lets an element change shape, size and position. CSS3 supports 2D and 3D transformations. The 2D transformation methods present are<\/p>\n<ul>\n<li>translate()<\/li>\n<li>rotate()<\/li>\n<li>scale()<\/li>\n<li>skewX()<\/li>\n<li>skewY()<\/li>\n<li>matrix()<\/li>\n<\/ul>\n<p><strong>The translate() Method<\/strong> &#8211; The translate() method moves an element from its current position (according to the parameters given for the X-axis and the Y-axis). The following example moves the &lt;div&gt; element 50 pixels to the right, and 100 pixels down from its current position:<\/p>\n<p>div {<\/p>\n<p>-ms-transform: translate(50px,100px); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: translate(50px,100px); \/* Safari *\/<\/p>\n<p>transform: translate(50px,100px);<\/p>\n<p>}<\/p>\n<p><strong>The rotate() Method<\/strong> &#8211; The rotate() method rotates an element clockwise or counter-clockwise according to a given degree. The following example rotates the &lt;div&gt; element clockwise with 20 degrees<\/p>\n<p>div {<\/p>\n<p>-ms-transform: rotate(20deg); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: rotate(20deg); \/* Safari *\/<\/p>\n<p>transform: rotate(20deg);<\/p>\n<p>}<\/p>\n<p>Using negative values will rotate the element counter-clockwise. The following example rotates the &lt;div&gt; element counter-clockwise with 20 degrees, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: rotate(-20deg); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: rotate(-20deg); \/* Safari *\/<\/p>\n<p>transform: rotate(-20deg);<\/p>\n<p>}<\/p>\n<p><strong>The scale() Method <\/strong>&#8211; The scale() method increases or decreases the size of an element (according to the parameters given for the width and height). The following example increases the &lt;div&gt; element to be two times of its original width, and three times of its original height, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: scale(2,3); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: scale(2,3); \/* Safari *\/<\/p>\n<p>transform: scale(2,3);<\/p>\n<p>}<\/p>\n<p>The following example decreases the &lt;div&gt; element to be half of its original width and height, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: scale(0.5,0.5); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: scale(0.5,0.5); \/* Safari *\/<\/p>\n<p>transform: scale(0.5,0.5);<\/p>\n<p>}<\/p>\n<p><strong>The skewX() Method <\/strong>&#8211; The skewX() method skews an element along the X-axis by the given angle. The following example skews the &lt;div&gt; element 20 degrees along the X-axis, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: skewX(20deg); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: skewX(20deg); \/* Safari *\/<\/p>\n<p>transform: skewX(20deg);<\/p>\n<p>}<\/p>\n<p><strong>The skewY() Method<\/strong> &#8211; The skewY() method skews an element along the Y-axis by the given angle. The following example skews the &lt;div&gt; element 20 degrees along the Y-axis, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: skewY(20deg); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: skewY(20deg); \/* Safari *\/<\/p>\n<p>transform: skewY(20deg);<\/p>\n<p>}<\/p>\n<p><strong>The skew() Method<\/strong> &#8211; The skew() method skews an element along the X and Y-axis by the given angles. The following example skews the &lt;div&gt; element 20 degrees along the X-axis, and 10 degrees along the Y-axis, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: skew(20deg, 10deg); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: skew(20deg, 10deg); \/* Safari *\/<\/p>\n<p>transform: skew(20deg, 10deg);<\/p>\n<p>}<\/p>\n<p>If the second parameter is not specified, it has a zero value. So, the following example skews the &lt;div&gt; element 20 degrees along the X-axis, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: skew(20deg); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: skew(20deg); \/* Safari *\/<\/p>\n<p>transform: skew(20deg);<\/p>\n<p>}<\/p>\n<p><strong>The matrix() Method<\/strong> &#8211; The matrix() method combines all the 2D transform methods into one. The matrix() method take six parameters, containing mathematic functions, which allows you to rotate, scale, move (translate), and skew elements, as<\/p>\n<p>div {<\/p>\n<p>-ms-transform: matrix(1, -0.3, 0, 1, 0, 0); \/* IE 9 *\/<\/p>\n<p>-webkit-transform: matrix(1, -0.3, 0, 1, 0, 0); \/* Safari *\/<\/p>\n<p>transform: matrix(1, -0.3, 0, 1, 0, 0);<\/p>\n<p>}<\/p>\n<p>The lists of all the 2D transform properties and functions, are as<\/p>\n<table>\n<thead>\n<tr>\n<td width=\"175\"><strong>Property <\/strong><\/td>\n<td width=\"463\"><strong>Description<\/strong><\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td width=\"175\">transform<\/td>\n<td width=\"463\">Applies a 2D or 3D transformation to an element<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">transform-origin<\/td>\n<td width=\"463\">Allows you to change the position on transformed elements<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">matrix(n,n,n,n,n,n)<\/td>\n<td width=\"463\">Defines a 2D transformation, using a matrix of six values<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">translate(x,y)<\/td>\n<td width=\"463\">Defines a 2D translation, moving the element along the X- and the Y-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">translateX(n)<\/td>\n<td width=\"463\">Defines a 2D translation, moving the element along the X-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">translateY(n)<\/td>\n<td width=\"463\">Defines a 2D translation, moving the element along the Y-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">scale(x,y)<\/td>\n<td width=\"463\">Defines a 2D scale transformation, changing the elements width and height<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">scaleX(n)<\/td>\n<td width=\"463\">Defines a 2D scale transformation, changing the element&#8217;s width<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">scaleY(n)<\/td>\n<td width=\"463\">Defines a 2D scale transformation, changing the element&#8217;s height<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">rotate(angle)<\/td>\n<td width=\"463\">Defines a 2D rotation, the angle is specified in the parameter<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">skew(x-angle,y-angle)<\/td>\n<td width=\"463\">Defines a 2D skew transformation along the X- and the Y-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">skewX(angle)<\/td>\n<td width=\"463\">Defines a 2D skew transformation along the X-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"175\">skewY(angle)<\/td>\n<td width=\"463\">Defines a 2D skew transformation along the Y-axis<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>3D Transformation<\/strong><\/p>\n<p>CSS3 enables formatting of elements using 3D transformations. The 3D transformation methods, are<\/p>\n<ul>\n<li>rotateX()<\/li>\n<li>rotateY()<\/li>\n<li>rotateZ()<\/li>\n<\/ul>\n<p><strong>The rotateX() Method<\/strong> &#8211; The rotateX() method rotates an element around its X-axis at a given degree, as<\/p>\n<p>div {<\/p>\n<p>-webkit-transform: rotateX(150deg); \/* Safari *\/<\/p>\n<p>transform: rotateX(150deg);<\/p>\n<p>}<\/p>\n<p><strong>The rotateY() Method<\/strong> &#8211; The rotateY() method rotates an element around its Y-axis at a given degree, as<\/p>\n<p>div {<\/p>\n<p>-webkit-transform: rotateY(130deg); \/* Safari *\/<\/p>\n<p>transform: rotateY(130deg);<\/p>\n<p>}<\/p>\n<p><strong>The rotateZ() Method<\/strong> &#8211; The rotateZ() method rotates an element around its Z-axis at a given degree, as<\/p>\n<p>div {<\/p>\n<p>-webkit-transform: rotateZ(90deg); \/* Safari *\/<\/p>\n<p>transform: rotateZ(90deg);<\/p>\n<p>}<\/p>\n<p>The 3D transform properties, are as<\/p>\n<table>\n<thead>\n<tr>\n<td width=\"138\"><strong>Property <\/strong><\/td>\n<td width=\"501\"><strong>Description<\/strong><\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td width=\"138\">transform<\/td>\n<td width=\"501\">Applies a 2D or 3D transformation to an element<\/td>\n<\/tr>\n<tr>\n<td width=\"138\">transform-origin<\/td>\n<td width=\"501\">Allows you to change the position on transformed elements<\/td>\n<\/tr>\n<tr>\n<td width=\"138\">transform-style<\/td>\n<td width=\"501\">Specifies how nested elements are rendered in 3D space<\/td>\n<\/tr>\n<tr>\n<td width=\"138\">perspective<\/td>\n<td width=\"501\">Specifies the perspective on how 3D elements are viewed<\/td>\n<\/tr>\n<tr>\n<td width=\"138\">perspective-origin<\/td>\n<td width=\"501\">Specifies the bottom position of 3D elements<\/td>\n<\/tr>\n<tr>\n<td width=\"138\">backface-visibility<\/td>\n<td width=\"501\">Defines whether or not an element should be visible when not facing the screen<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The 3D Transform Methods, are as<\/p>\n<table>\n<thead>\n<tr>\n<td width=\"226\"><strong>Function <\/strong><\/td>\n<td width=\"412\"><strong>Description<\/strong><\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td width=\"226\">matrix3d (n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)<\/td>\n<td width=\"412\">Defines a 3D transformation, using a 4&#215;4 matrix of 16 values<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">translate3d(x,y,z)<\/td>\n<td width=\"412\">Defines a 3D translation<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">translateX(x)<\/td>\n<td width=\"412\">Defines a 3D translation, using only the value for the X-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">translateY(y)<\/td>\n<td width=\"412\">Defines a 3D translation, using only the value for the Y-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">translateZ(z)<\/td>\n<td width=\"412\">Defines a 3D translation, using only the value for the Z-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">scale3d(x,y,z)<\/td>\n<td width=\"412\">Defines a 3D scale transformation<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">scaleX(x)<\/td>\n<td width=\"412\">Defines a 3D scale transformation by giving a value for the X-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">scaleY(y)<\/td>\n<td width=\"412\">Defines a 3D scale transformation by giving a value for the Y-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">scaleZ(z)<\/td>\n<td width=\"412\">Defines a 3D scale transformation by giving a value for the Z-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">rotate3d(x,y,z,angle)<\/td>\n<td width=\"412\">Defines a 3D rotation<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">rotateX(angle)<\/td>\n<td width=\"412\">Defines a 3D rotation along the X-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">rotateY(angle)<\/td>\n<td width=\"412\">Defines a 3D rotation along the Y-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">rotateZ(angle)<\/td>\n<td width=\"412\">Defines a 3D rotation along the Z-axis<\/td>\n<\/tr>\n<tr>\n<td width=\"226\">perspective(n)<\/td>\n<td width=\"412\">Defines a perspective view for a 3D transformed element<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h5 id=\"block-07feabc5-3923-4122-ba70-f7cf1db64a8f\" class=\"block-editor-block-list__block wp-block is-selected rich-text block-editor-rich-text__editable is-hovered wp-block\" tabindex=\"0\" role=\"textbox\" contenteditable=\"true\" aria-label=\"Write heading\u2026\" aria-multiline=\"true\" data-block=\"07feabc5-3923-4122-ba70-f7cf1db64a8f\" data-type=\"core\/heading\" data-title=\"Heading\">Go To-\u00a0<a href=\"https:\/\/www.vskills.in\/certification\/tutorial\/certified-css3-developer\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Certified CSS3 Developer<\/strong>\u00a0<strong>Tutorial<\/strong><\/a><\/h5>\n","protected":false},"excerpt":{"rendered":"<p>2D Transformation CSS3 transforms enables to translate, rotate, scale, and skew elements. A transformation is an effect that lets an element change shape, size and position. CSS3 supports 2D and 3D transformations. The 2D transformation methods present are translate() rotate() scale() skewX() skewY() matrix() The translate() Method &#8211; The translate() method moves an element from&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[8568],"tags":[8594],"class_list":["post-74335","page","type-page","status-publish","hentry","category-css3","tag-2d-and-3d-transformation"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>2D and 3D Transformation - Tutorial<\/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:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"2D and 3D Transformation - Tutorial\" \/>\n<meta property=\"og:description\" content=\"2D Transformation CSS3 transforms enables to translate, rotate, scale, and skew elements. A transformation is an effect that lets an element change shape, size and position. CSS3 supports 2D and 3D transformations. The 2D transformation methods present are translate() rotate() scale() skewX() skewY() matrix() The translate() Method &#8211; The translate() method moves an element from...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T08:53:26+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/\",\"name\":\"2D and 3D Transformation - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"datePublished\":\"2020-01-17T06:47:38+00:00\",\"dateModified\":\"2024-04-12T08:53:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2D and 3D Transformation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"2D and 3D Transformation - Tutorial","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:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/","og_locale":"en_US","og_type":"article","og_title":"2D and 3D Transformation - Tutorial","og_description":"2D Transformation CSS3 transforms enables to translate, rotate, scale, and skew elements. A transformation is an effect that lets an element change shape, size and position. CSS3 supports 2D and 3D transformations. The 2D transformation methods present are translate() rotate() scale() skewX() skewY() matrix() The translate() Method &#8211; The translate() method moves an element from...","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T08:53:26+00:00","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/","name":"2D and 3D Transformation - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"datePublished":"2020-01-17T06:47:38+00:00","dateModified":"2024-04-12T08:53:26+00:00","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/2d-and-3d-transformation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"2D and 3D Transformation"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/74335","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=74335"}],"version-history":[{"count":4,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/74335\/revisions"}],"predecessor-version":[{"id":85734,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/74335\/revisions\/85734"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=74335"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=74335"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=74335"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}