{"id":9122,"date":"2022-09-17T07:26:14","date_gmt":"2022-09-17T01:56:14","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/"},"modified":"2022-09-17T07:26:14","modified_gmt":"2022-09-17T01:56:14","slug":"solved-fullscreen-video-trigger","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/","title":{"rendered":"[Solved] Fullscreen video trigger"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-37668745\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"37668745\" data-parentid=\"37645023\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>I checked out the Airbnb homepage and I saw the video and the effect you are talking about. What you want is a &#8220;video&#8221; version of the lightbox. It&#8217;s actually a pretty easy effect to achieve. What you need is:<\/p>\n<ol>\n<li>\n<p>A button.<\/p>\n<\/li>\n<li>\n<p>A <code>div<\/code> to be the lightbox, which appears after the <code>onclick<\/code> event of the button is triggered.<\/p>\n<\/li>\n<li>\n<p>A <code>div<\/code> to nest the video inside.<\/p>\n<\/li>\n<li>\n<p>An actual video to show.<\/p>\n<\/li>\n<li>\n<p>A close button to close the lightbox.<\/p>\n<\/li>\n<\/ol>\n<p>I created a simple version for you in this <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/codepen.io\/angelpolitis\/pen\/KMdgwx\">codepen<\/a>.<\/p>\n<p>You can also check it out using the snippet below.<\/p>\n<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"false\" data-console=\"true\">\n<div class=\"snippet-code\">\n<pre class=\"snippet-code-js lang-js prettyprint-override\"><code>$(document).ready(function() {\r\n\r\n  \/\/ When the button is clicked make the lightbox fade in in the span of 1 second, hide itself and start the video\r\n  $(\"#button\").on(\"click\", function() {\r\n    $(\"#lightbox\").fadeIn(1000);\r\n    $(this).hide();\r\n\r\n    \/\/ A simple hack to start the video without using the YouTube api\r\n    var videoURL = $('#video').prop('src');\r\n    videoURL += \"?autoplay=1\";\r\n    $('#video').prop('src', videoURL);\r\n  });\r\n\r\n  \/\/ When the close button is clicked make the lightbox fade out in the span of 0.5 seconds and show the play button\r\n  $(\"#close-btn\").on(\"click\", function() {\r\n    $(\"#lightbox\").fadeOut(500);\r\n    $(\"#button\").show(250);\r\n  });\r\n});<\/code><\/pre>\n<pre class=\"snippet-code-css lang-css prettyprint-override\"><code>#button {\r\n  \/* Text *\/\r\n  font-size: 45px;\r\n  \r\n  \/* Dimensions *\/\r\n  width: 100px;\r\n  height: 100px;\r\n  \r\n  \/* Positioning *\/\r\n  position: fixed;\r\n  top: 50%;\r\n  left: 50%;\r\n  z-index: 2;\r\n  -webkit-transform: translate(-50%, -50%);\r\n  -moz-transform: translate(-50%, -50%);\r\n  -ms-transform: translate(-50%, -50%);\r\n  -o-transform: translate(-50%, -50%);\r\n  transform: translate(-50%, -50%);\r\n  \r\n  \/* The code above makes sure the video is\r\n  both vertically and horizontally centered\r\n  to the screen *\/\r\n  \r\n  \/* Styling *\/\r\n  background-color: rgba(0, 0, 0, 0.95);\r\n  border: 0; \/* remove annoying grey border *\/\r\n  border-radius: 50%; \/* make it a circle *\/\r\n  outline: none; \/* Ditch the annoyning blue outline on click *\/\r\n  cursor: pointer;\r\n  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.25);\r\n  \r\n  \/* ----- Transformations ----- *\/\r\n  -webkit-transform: scale(1, 1);\r\n  -moz-transform: scale(1, 1);\r\n  -ms-transform: scale(1, 1);\r\n  -o-transform: scale(1, 1);\r\n  transform: scale(1, 1);\r\n  \r\n  \/* ----- Transitions ----- *\/\r\n  -webkit-transition: transform .5s ease;\r\n  -moz-transition: transform .5s ease;\r\n  -ms-transition: transform .5s ease;\r\n  -o-transition: transform .5s ease;\r\n  transition: transform .5s ease;\r\n}\r\n\r\n#button:hover {\r\n  \/* ----- Transformations ----- *\/\r\n  -webkit-transform: scale(1.2, 1.2);\r\n  -moz-transform: scale(1.2, 1.2);\r\n  -ms-transform: scale(1.2, 1.2);\r\n  -o-transform: scale(1.2, 1.2);\r\n  transform: scale(1.2, 1.2);\r\n  \r\n  \/* ----- Transitions ----- *\/\r\n  -webkit-transition: transform .5s ease;\r\n  -moz-transition: transform .5s ease;\r\n  -ms-transition: transform .5s ease;\r\n  -o-transition: transform .5s ease;\r\n  transition: transform .5s ease;\r\n}\r\n\r\n#button &gt; i {\r\n  \/* Text *\/\r\n  color: grey;\r\n  text-shadow: 1px 1px rgba(255, 255, 255, 0.2);\r\n  \r\n  \/* Make play sign 3d-ish *\/\r\n  \r\n  \/* Positioning *\/\r\n  position: relative;\r\n  margin-top: 4px;\r\n  margin-left: 6px;\r\n  \r\n  \/* ----- Transitions ----- *\/\r\n  -webkit-transition: color .5s ease;\r\n  -moz-transition: color .5s ease;\r\n  -ms-transition: color .5s ease;\r\n  -o-transition: color .5s ease;\r\n  transition: color .5s ease;\r\n}\r\n\r\n#button:hover &gt; i {\r\n  \/* Text *\/\r\n  color: white;\r\n  \r\n  \/* ----- Transitions ----- *\/\r\n  -webkit-transition: color .5s ease;\r\n  -moz-transition: color .5s ease;\r\n  -ms-transition: color .5s ease;\r\n  -o-transition: color .5s ease;\r\n  transition: color .5s ease;\r\n  \r\n  \/* When we hover on the button make the play sign white. *\/\r\n}\r\n\r\n#lightbox {\r\n  \/* ----- Positioning ----- *\/\r\n  position: fixed;\r\n  top: 0;\r\n  bottom: 0;\r\n  left: 0;\r\n  right: 0;\r\n  z-index: 1;\r\n  \r\n  \/* The code above makes sure that the\r\n  lightbox covers the entire page*\/\r\n  \r\n  \/* ----- Visibility ----- *\/\r\n  display: none;\r\n  \r\n  \/* ----- Styling ----- *\/\r\n  background-color: rgba(0, 0, 0, 0.95);\r\n  \r\n  \/* Normally, most lightboxes do not use\r\n  a completely solid black, but with about\r\n  90-95% opacity so that the background is\r\n  somewhat visible *\/\r\n}\r\n\r\n#video-wrapper {\r\n  \/* ----- Positioning ----- *\/\r\n  position: absolute;\r\n  top: 50%;\r\n  left: 50%;\r\n  z-index: 2;\r\n  -webkit-transform: translate(-50%, -50%);\r\n  -moz-transform: translate(-50%, -50%);\r\n  -ms-transform: translate(-50%, -50%);\r\n  -o-transform: translate(-50%, -50%);\r\n  transform: translate(-50%, -50%);\r\n  \r\n  \/* The code above makes sure the video is\r\n  both vertically and horizontally centered\r\n  to the screen *\/\r\n  \r\n  \/* ----- Styling ----- *\/\r\n  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);\r\n  \r\n  \/* The code above is used to add a little shadow to the video making blend in better *\/\r\n}\r\n\r\n#close-btn {\r\n  \/* ----- Text ----- *\/\r\n  color: grey;\r\n  font-size: 25px;\r\n  \r\n  \/* ----- Positioning ----- *\/\r\n  position: fixed;\r\n  top: 3%;\r\n  right: 3%;\r\n  z-index: 2;\r\n  \r\n  \/* The code above is used to put the button on the upper right corner of the lightbox *\/\r\n  \r\n  \/* ----- Transformations ----- *\/\r\n  -webkit-transform: scale(1, 1);\r\n  -moz-transform: scale(1, 1);\r\n  -ms-transform: scale(1, 1);\r\n  -o-transform: scale(1, 1);\r\n  transform: scale(1, 1);\r\n  \r\n   \/* The code above is used to initialize the scale for the button so that it can be used in transitions *\/\r\n  \r\n  \/* ----- Transitions ----- *\/\r\n  -webkit-transition: transform .5s ease, color .5s ease;\r\n  -moz-transition: transform .5s ease, color .5s ease;\r\n  -ms-transition: transform .5s ease, color .5s ease;\r\n  -o-transition: transform .5s ease, color .5s ease;\r\n  transition: transform .5s ease, color .5s ease;\r\n}\r\n\r\n#close-btn:hover {\r\n  \/* ----- Text ----- *\/\r\n  color: white;\r\n  \r\n  \/* ----- Styling ----- *\/\r\n  cursor: pointer;\r\n  \r\n  \/* ----- Transformations ----- *\/\r\n  -webkit-transform: scale(1.2, 1.2);\r\n  -moz-transform: scale(1.2, 1.2);\r\n  -ms-transform: scale(1.2, 1.2);\r\n  -o-transform: scale(1.2, 1.2);\r\n  transform: scale(1.2, 1.2);\r\n  \r\n    \/* ----- Transitions ----- *\/\r\n  -webkit-transition: transform .5s ease, color .5s ease;\r\n  -moz-transition: transform .5s ease, color .5s ease;\r\n  -ms-transition: transform .5s ease, color .5s ease;\r\n  -o-transition: transform .5s ease, color .5s ease;\r\n  transition: transform .5s ease, color .5s ease;\r\n}<\/code><\/pre>\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;link href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/4.6.2\/css\/font-awesome.min.css\" rel=\"stylesheet\" \/&gt;\r\n&lt;script src=\"http:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/2.2.4\/jquery.min.js\"&gt;&lt;\/script&gt;\r\n\r\n&lt;!--Requirements--&gt;\r\n\r\n&lt;!--I use a font awesome icon as a close button.\r\nBe sure to include in your file the latest version\r\nof Font Awesome for it to work.\r\nLINK:\r\nhttps:\/\/maxcdn.bootstrapcdn.com\/font-awesome\/4.5.0\/css\/font-awesome.min.css--&gt;\r\n\r\n&lt;!--Also remember to include the latest version of jQuery\r\nin order for the script to work\r\nLINK: http:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/2.2.4\/jquery.min.js--&gt;\r\n\r\n&lt;button id=\"button\"&gt;&lt;i class=\"fa fa-play\" aria-hidden=\"true\"&gt;&lt;\/i&gt;\r\n&lt;\/button&gt;\r\n&lt;div id=\"lightbox\"&gt;\r\n  &lt;i id=\"close-btn\" class=\"fa fa-times\"&gt;&lt;\/i&gt;\r\n  &lt;div id=\"video-wrapper\"&gt;\r\n    &lt;iframe id=\"video\" width=\"960\" height=\"540\" src=\"https:\/\/www.youtube.com\/embed\/lJfqK9bgIng\" frameborder=\"0\" allowfullscreen&gt;&lt;\/iframe&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;<\/code><\/pre>\n<\/div>\n<\/div><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Fullscreen video trigger <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] I checked out the Airbnb homepage and I saw the video and the effect you are talking about. What you want is a &#8220;video&#8221; version of the lightbox. It&#8217;s actually a pretty easy effect to achieve. What you need is: A button. A div to be the lightbox, which appears after the onclick event &#8230; <a title=\"[Solved] Fullscreen video trigger\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\" aria-label=\"More on [Solved] Fullscreen video trigger\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[464,346,333],"class_list":["post-9122","post","type-post","status-publish","format-standard","hentry","category-solved","tag-css","tag-html","tag-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Fullscreen video trigger - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Fullscreen video trigger - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] I checked out the Airbnb homepage and I saw the video and the effect you are talking about. What you want is a &#8220;video&#8221; version of the lightbox. It&#8217;s actually a pretty easy effect to achieve. What you need is: A button. A div to be the lightbox, which appears after the onclick event ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-17T01:56:14+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Fullscreen video trigger\",\"datePublished\":\"2022-09-17T01:56:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\"},\"wordCount\":106,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"css\",\"html\",\"javascript\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\",\"name\":\"[Solved] Fullscreen video trigger - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-17T01:56:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Fullscreen video trigger\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Fullscreen video trigger - JassWeb","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:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Fullscreen video trigger - JassWeb","og_description":"[ad_1] I checked out the Airbnb homepage and I saw the video and the effect you are talking about. What you want is a &#8220;video&#8221; version of the lightbox. It&#8217;s actually a pretty easy effect to achieve. What you need is: A button. A div to be the lightbox, which appears after the onclick event ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/","og_site_name":"JassWeb","article_published_time":"2022-09-17T01:56:14+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Fullscreen video trigger","datePublished":"2022-09-17T01:56:14+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/"},"wordCount":106,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["css","html","javascript"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/","url":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/","name":"[Solved] Fullscreen video trigger - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-17T01:56:14+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-fullscreen-video-trigger\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Fullscreen video trigger"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/9122","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=9122"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/9122\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=9122"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=9122"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=9122"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}