{"id":8170,"date":"2019-07-01T15:49:02","date_gmt":"2019-07-01T15:49:02","guid":{"rendered":"https:\/\/xpon.ai\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/"},"modified":"2023-08-09T04:51:58","modified_gmt":"2023-08-09T04:51:58","slug":"how-to-use-youtube-video-as-your-webpage-background-2","status":"publish","type":"post","link":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/","title":{"rendered":"How to Use a Youtube Video Webpage Background in 2020"},"content":{"rendered":"<p>Are you looking to embed a Youtube Video Webpage Background? It is now much easier.<\/p>\n<p>Remember the hassles over the past few years regarding embedding video?<\/p>\n<p>Well, times have changed:\u00a0HTML5 has made\u00a0embedding video inside a web page really easy now.<\/p>\n<p>You just need to prepare a good-quality video in MP4\/H.264 format, host it on your web server and insert the &lt;video&gt; tag with the MP4 URL on your designed page. You might need more files in a different format to support all browsers.<\/p>\n<p>If you want to have an immediate impact on your customers, than a background video is the way to go.<\/p>\n<p>XPON has recently completed some great web designs using HTML5 video background. The only downside to this web technique is that the video has to be hosted on the webserver, meaning that a huge bandwidth quota might be used if the MP4 file size is large.<\/p>\n<h4><strong>The KidzWish website<\/strong><\/h4>\n<p>Internetrix redesigned the\u00a0<a title=\"Kidzwish Foundation website that has a Youtube video on the homepage background\" href=\"https:\/\/www.kidzwishfoundation.org.au\/\" target=\"_blank\" rel=\"noopener\">KidzWish Foundation website.<\/a>\u00a0A video background section was created on the new Homepage with the MP4 file hosted on the same server. We found that the website was consuming hundreds of Gigabytes in bandwidth quota every month.<\/p>\n<p>This is abnormal because the KidzWish website neither has many images nor file resources to download. We investigated the log files and found 99.7% of the bandwidth was generated from the Homepage MP4 file!<\/p>\n<p>We configured cache control on our servers for the .mp4 file, meaning that browsers should then cache the video file. However, after testing different browsers, it turned out that Chrome could not correctly cache a file larger than 10 Megabytes. The Homepage video is 22MB and automatically replays, meaning that Chrome keeps downloading the .mp4 file from the server and generating bandwidth!<\/p>\n<h4 dir=\"ltr\"><strong>Fixing the cache issue<\/strong><\/h4>\n<p dir=\"ltr\">Fixing the cache problem in Chrome isn\u2019t easy. <a href=\"https:\/\/xpon.ai\/resources\/the-3-best-accessible-website-examples-for-inspiration-in-2021\/\">The solution we found<\/a> was to host the video on a 3rd party video hosting provider like Youtube and embed it in the background as HTML5 Video.<\/p>\n<h4>STEP 1<\/h4>\n<p dir=\"ltr\">To fix things, first you require the <a title=\"Developer Instructions: YouTube Player API Reference for iframe Embeds\" href=\"https:\/\/developers.google.com\/youtube\/iframe_api_reference\" target=\"_blank\" rel=\"nofollow noopener\">Youtube IFrame Player API<\/a> to hide various video information and control buttons.<\/p>\n<h5>Sample video.js<\/h5>\n<pre class=\"code-example prettyprint\" tabindex=\"0\" aria-label=\". Press enter to view the code.\"><code class=\"code-content\" tabindex=\"-1\" contenteditable=\"\" spellcheck=\"false\" aria-label=\"Use the arrow keys to navigate the code.\">\r\nfunction onYouTubeIframeAPIReady() {\r\n  var player;\r\n  player = new YT.Player('YouTubeBackgroundVideoPlayer', {\r\n      videoId: '{$loadYouTubeVideoID}', \/\/ YouTube Video ID\r\n      width: 1280,               \/\/ Player width (in px)\r\n      height: 720,              \/\/ Player height (in px)\r\n      playerVars: {\r\n        playlist: '{$loadYouTubeVideoID}',\r\n          autoplay: 1,        \/\/ Auto-play the video on load\r\n          autohide: 1,\r\n          disablekb: 1, \r\n          controls: 0,        \/\/ Hide pause\/play buttons in player\r\n          showinfo: 0,        \/\/ Hide the video title\r\n          modestbranding: 1,  \/\/ Hide the Youtube Logo\r\n          loop: 1,            \/\/ Run the video in a loop\r\n          fs: 0,              \/\/ Hide the full screen button\r\n          autohide: 0,         \/\/ Hide video controls when playing\r\n          rel: 0,\r\n          enablejsapi: 1\r\n      },\r\n      events: {\r\n        onReady: function(e) {\r\n            e.target.mute();\r\n            e.target.setPlaybackQuality('hd1080');\r\n        },\r\n        onStateChange: function(e) {\r\n          if(e &amp;&amp; e.data === 1){\r\n              var videoHolder = document.getElementById('home-banner-box');\r\n              if(videoHolder &amp;&amp; videoHolder.id){\r\n                videoHolder.classList.remove('loading');\r\n              }\r\n          }else if(e &amp;&amp; e.data === 0){\r\n            e.target.playVideo()\r\n          }\r\n        }\r\n      }\r\n  });\r\n}\r\n<\/code><\/pre>\n<style>\n    pre, code {<br \/>        font-family: monospace, monospace;<br \/>        background-color: #f7f8f7;<br \/>    }<br \/>    pre {<br \/>        overflow: auto;<br \/>    }<br \/>    pre > code {<br \/>        display: block;<br \/>        padding: 1rem;<br \/>        word-wrap: normal;<br \/>    }<br \/><\/style>\n<h4 dir=\"ltr\">STEP 2<\/h4>\n<p dir=\"ltr\">Once you use this API, the embedded Youtube video looks clean and is perfect for playing in the background. In the `onStateChange` event, if the video starts to play, the fallback image is removed. This has two benefits:<\/p>\n<ol>\n<li>The ability to display a loading icon or image while the video is still buffering<\/li>\n<li>It displays a fallback image on mobile devices as\u00a0few mobile browsers support video autoplay<\/li>\n<\/ol>\n<h5 dir=\"ltr\">Sample HTML<\/h5>\n<pre class=\"language-html line-numbers\">&lt;section id=\"home-banner-box\" class=\"home-banner loading\"&gt;\r\n\t&lt;div class=\"image video-slide\" style=\"background-image: url($ImageURL)\"&gt;\r\n\t\t&lt;div class=\"video-background\"&gt;\r\n\t\t\t&lt;div class=\"video-foreground\" id=\"YouTubeBackgroundVideoPlayer\"&gt;\r\n\t\t    &lt;\/div&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/div&gt;\r\n&lt;\/section&gt;\r\n\r\n&lt;script async src=\"https:\/\/www.youtube.com\/iframe_api\"&gt;&lt;\/script&gt;\r\n&lt;script async src=\"video.js\"&gt;&lt;\/script&gt;<\/pre>\n<h5 dir=\"ltr\">Sample CSS<\/h5>\n<pre class=\"code-example prettyprint\" tabindex=\"0\" aria-label=\". Press enter to view the code.\"><code class=\"code-content\" tabindex=\"-1\" contenteditable=\"\" spellcheck=\"false\" aria-label=\"Use the arrow keys to navigate the code.\">\r\n.home-banner .slide .video-slide {\r\n  background-color: #000; }\r\n\r\n.home-banner.loading .video-background {\r\n  opacity: 0; }\r\n\r\n.video-background {\r\n  position: absolute;\r\n  top: 50%;\r\n  left: 0;\r\n  padding-top: 56.25%;\r\n  width: 100%;\r\n  -webkit-transform: translateY(-50%);\r\n  -ms-transform: translateY(-50%);\r\n  transform: translateY(-50%);\r\n  -webkit-transition: 2s opacity ease;\r\n  transition: 2s opacity ease;\r\n  opacity: 1; }\r\n\r\n.video-foreground,\r\n.video-background iframe {\r\n  position: absolute;\r\n  top: 0;\r\n  left: 0;\r\n  width: 100%;\r\n  height: 100%;\r\n  pointer-events: none; }\r\n<\/code><\/pre>\n<pre class=\"language-css line-numbers\"><style>\r\n    pre, code {<br \/>\r\n        font-family: monospace, monospace;<br \/>\r\n        background-color: #f7f8f7;<br \/>\r\n    }<br \/>\r\n    pre {<br \/>\r\n        overflow: auto;<br \/>\r\n    }<br \/>\r\n    pre > code {<br \/>\r\n        display: block;<br \/>\r\n        padding: 1rem;<br \/>\r\n        word-wrap: normal;<br \/>\r\n    }<br \/>\r\n<\/style><\/pre>\n<p>&nbsp;<\/p>\n<h4><strong>Mobile limitations<\/strong><\/h4>\n<p>Unfortunately, this implementation is not designed to work on mobile devices. Due to limitations put in place by device manufacturers like Apple and Samsung, the autoplay functionality of this script has been prevented from working on mobile. The reasoning behind the decision was to prevent high data usage on mobile networks, and is more of a business decision rather than a technical limitation.<br \/>\nAlternative implementations using HTML5 players have had success with getting autoplay to work on mobile devices, and would be worth looking into to augment this script if you require this functionality to be included in your video player.<\/p>\n<h4><strong>So what have we achieved?<\/strong><\/h4>\n<p dir=\"ltr\">So there you have it: the Youtube video is now playing in the background of the section. So easy! We don\u2019t need to worry about the bandwidth anymore and we now have a much better streaming service from Youtube, which is free!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you looking to embed a Youtube Video Webpage Background? It is now much easier. Remember the hassles over the past few years regarding embedding video? Well, times have changed:\u00a0HTML5 has made\u00a0embedding video inside a web page really easy now. You just need to prepare a good-quality video in MP4\/H.264 format, host it on your [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":4986,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Youtube Video Webpage Background","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Are you looking to embed a Youtube Video Webpage Background? It is now much easier in 2020 to do embed your video.","_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_canonical":"","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[391],"tags":[425],"class_list":["post-8170","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog-nz","tag-customer-experience-nz"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.2 (Yoast SEO v21.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Use a Youtube Video Webpage Background in 2020 | XPON Technologies | XPON New Zealand<\/title>\n<meta name=\"description\" content=\"Are you looking to embed a Youtube Video Webpage Background? It is now much easier in 2020 to do embed your video. | XPON New Zealand\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/posts\/8170\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use a Youtube Video Webpage Background in 2020 | XPON New Zealand\" \/>\n<meta property=\"og:description\" content=\"Are you looking to embed a Youtube Video Webpage Background? It is now much easier in 2020 to do embed your video. | XPON New Zealand\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/\" \/>\n<meta property=\"og:site_name\" content=\"XPON Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/xpongroup\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-01T15:49:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-09T04:51:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/webdev.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1845\" \/>\n\t<meta property=\"og:image:height\" content=\"1045\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XPON Technologies Group\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xpontech\" \/>\n<meta name=\"twitter:site\" content=\"@xpontech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XPON Technologies Group\" \/>\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:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/\"},\"author\":{\"name\":\"XPON Technologies Group\",\"@id\":\"https:\/\/xpon.ai\/nz\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\"},\"headline\":\"How to Use a Youtube Video Webpage Background in 2020\",\"datePublished\":\"2019-07-01T15:49:02+00:00\",\"dateModified\":\"2023-08-09T04:51:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/\"},\"wordCount\":588,\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/nz\/#organization\"},\"keywords\":[\"Customer Experience\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-NZ\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/\",\"url\":\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/\",\"name\":\"How to Use a Youtube Video Webpage Background in 2020 | XPON Technologies\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/nz\/#website\"},\"datePublished\":\"2019-07-01T15:49:02+00:00\",\"dateModified\":\"2023-08-09T04:51:58+00:00\",\"description\":\"Are you looking to embed a Youtube Video Webpage Background? It is now much easier in 2020 to do embed your video.\",\"breadcrumb\":{\"@id\":\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/#breadcrumb\"},\"inLanguage\":\"en-NZ\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xpon.ai\/nz\/?page_id=2680\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use a Youtube Video Webpage Background in 2020\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xpon.ai\/nz\/#website\",\"url\":\"https:\/\/xpon.ai\/nz\/\",\"name\":\"XPON Technologies\",\"description\":\"Technology &amp; cloud solutions to modernise marketing operations\",\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/nz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xpon.ai\/nz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-NZ\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xpon.ai\/nz\/#organization\",\"name\":\"XPON Technologies\",\"alternateName\":\"XPON\",\"url\":\"https:\/\/xpon.ai\/nz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-NZ\",\"@id\":\"https:\/\/xpon.ai\/nz\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"contentUrl\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"width\":212,\"height\":212,\"caption\":\"XPON Technologies\"},\"image\":{\"@id\":\"https:\/\/xpon.ai\/nz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/xpongroup\/\",\"https:\/\/twitter.com\/xpontech\",\"https:\/\/www.youtube.com\/@xpon\/videos\",\"https:\/\/au.linkedin.com\/company\/xpon-technologies\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xpon.ai\/nz\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\",\"name\":\"XPON Technologies Group\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-NZ\",\"@id\":\"https:\/\/xpon.ai\/nz\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"caption\":\"XPON Technologies Group\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use a Youtube Video Webpage Background in 2020 | XPON Technologies | XPON New Zealand","description":"Are you looking to embed a Youtube Video Webpage Background? It is now much easier in 2020 to do embed your video. | XPON New Zealand","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:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/posts\/8170","og_locale":"en_US","og_type":"article","og_title":"How to Use a Youtube Video Webpage Background in 2020 | XPON New Zealand","og_description":"Are you looking to embed a Youtube Video Webpage Background? It is now much easier in 2020 to do embed your video. | XPON New Zealand","og_url":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/","og_site_name":"XPON Technologies","article_publisher":"https:\/\/www.facebook.com\/xpongroup\/","article_published_time":"2019-07-01T15:49:02+00:00","article_modified_time":"2023-08-09T04:51:58+00:00","og_image":[{"width":1845,"height":1045,"url":"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/webdev.jpg","type":"image\/jpeg"}],"author":"XPON Technologies Group","twitter_card":"summary_large_image","twitter_creator":"@xpontech","twitter_site":"@xpontech","twitter_misc":{"Written by":"XPON Technologies Group","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/#article","isPartOf":{"@id":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/"},"author":{"name":"XPON Technologies Group","@id":"https:\/\/xpon.ai\/nz\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1"},"headline":"How to Use a Youtube Video Webpage Background in 2020","datePublished":"2019-07-01T15:49:02+00:00","dateModified":"2023-08-09T04:51:58+00:00","mainEntityOfPage":{"@id":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/"},"wordCount":588,"publisher":{"@id":"https:\/\/xpon.ai\/nz\/#organization"},"keywords":["Customer Experience"],"articleSection":["Blog"],"inLanguage":"en-NZ"},{"@type":"WebPage","@id":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/","url":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/","name":"How to Use a Youtube Video Webpage Background in 2020 | XPON Technologies","isPartOf":{"@id":"https:\/\/xpon.ai\/nz\/#website"},"datePublished":"2019-07-01T15:49:02+00:00","dateModified":"2023-08-09T04:51:58+00:00","description":"Are you looking to embed a Youtube Video Webpage Background? It is now much easier in 2020 to do embed your video.","breadcrumb":{"@id":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/#breadcrumb"},"inLanguage":"en-NZ","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/xpon.ai\/nz\/resources\/how-to-use-youtube-video-as-your-webpage-background-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xpon.ai\/nz\/?page_id=2680"},{"@type":"ListItem","position":2,"name":"How to Use a Youtube Video Webpage Background in 2020"}]},{"@type":"WebSite","@id":"https:\/\/xpon.ai\/nz\/#website","url":"https:\/\/xpon.ai\/nz\/","name":"XPON Technologies","description":"Technology &amp; cloud solutions to modernise marketing operations","publisher":{"@id":"https:\/\/xpon.ai\/nz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xpon.ai\/nz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-NZ"},{"@type":"Organization","@id":"https:\/\/xpon.ai\/nz\/#organization","name":"XPON Technologies","alternateName":"XPON","url":"https:\/\/xpon.ai\/nz\/","logo":{"@type":"ImageObject","inLanguage":"en-NZ","@id":"https:\/\/xpon.ai\/nz\/#\/schema\/logo\/image\/","url":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","contentUrl":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","width":212,"height":212,"caption":"XPON Technologies"},"image":{"@id":"https:\/\/xpon.ai\/nz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/xpongroup\/","https:\/\/twitter.com\/xpontech","https:\/\/www.youtube.com\/@xpon\/videos","https:\/\/au.linkedin.com\/company\/xpon-technologies"]},{"@type":"Person","@id":"https:\/\/xpon.ai\/nz\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1","name":"XPON Technologies Group","image":{"@type":"ImageObject","inLanguage":"en-NZ","@id":"https:\/\/xpon.ai\/nz\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","caption":"XPON Technologies Group"}}]}},"_links":{"self":[{"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/posts\/8170","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/comments?post=8170"}],"version-history":[{"count":0,"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/posts\/8170\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/media\/4986"}],"wp:attachment":[{"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/media?parent=8170"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/categories?post=8170"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xpon.ai\/nz\/wp-json\/wp\/v2\/tags?post=8170"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}