{"id":13075,"date":"2024-07-30T04:29:17","date_gmt":"2024-07-30T04:29:17","guid":{"rendered":"https:\/\/www.sintel.com\/?page_id=13075"},"modified":"2024-07-30T08:17:54","modified_gmt":"2024-07-30T08:17:54","slug":"testing","status":"publish","type":"page","link":"https:\/\/www.sintel.com\/pt\/testing\/","title":{"rendered":"testing"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"13075\" class=\"elementor elementor-13075\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1c1d2a7 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1c1d2a7\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8b2f386\" data-id=\"8b2f386\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-74030bb elementor-widget elementor-widget-html\" data-id=\"74030bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Image Slider with Links, Autoplay, and Dots<\/title>\r\n    <style>\r\n        .slider {\r\n            position: relative;\r\n            max-width: 100%;\r\n            margin: auto;\r\n            overflow: hidden;\r\n        }\r\n        .slides {\r\n            display: flex;\r\n            transition: transform 0.5s ease-in-out;\r\n            gap: 15px; \/* Gap between slides *\/\r\n            will-change: transform; \/* Improves performance *\/\r\n        }\r\n        .slide {\r\n            min-width: calc(33.33% - 10px); \/* Adjust width to account for gap *\/\r\n            box-sizing: border-box;\r\n        }\r\n        .slide img {\r\n            width: 100%;\r\n            display: block;\r\n        }\r\n        .dots {\r\n            text-align: center;\r\n            margin-top: 10px;\r\n            width: 100%;\r\n            bottom: 0;\r\n        }\r\n        .dot {\r\n            height: 15px;\r\n            width: 15px;\r\n            margin: 0 2px;\r\n            background-color: #bbb;\r\n            border-radius: 50%;\r\n            display: inline-block;\r\n            transition: background-color 0.6s ease;\r\n        }\r\n        .active {\r\n            background-color: #717171;\r\n        }\r\n    <\/style>\r\n<\/head>\r\n<body>\r\n\r\n<div class=\"slider\">\r\n    <div class=\"slides\">\r\n        <!-- Original slides -->\r\n        <div class=\"slide\">\r\n            <a href=\"https:\/\/example.com\/link1\"><img decoding=\"async\" src=\"https:\/\/www.sintel.com\/wp-content\/uploads\/Maxion-1.jpg\" alt=\"Slide 1\"><\/a>\r\n        <\/div>\r\n        <div class=\"slide\">\r\n            <a href=\"https:\/\/www.sintel.com\/pt\/agc-glass-europe-case-studies\/\"><img decoding=\"async\" src=\"https:\/\/www.sintel.com\/wp-content\/uploads\/AGC-GLASS-EUROPE-1.jpg\" alt=\"Slide 2\"><\/a>\r\n        <\/div>\r\n        <div class=\"slide\">\r\n            <a href=\"https:\/\/www.sintel.com\/pt\/agco\/\"><img decoding=\"async\" src=\"https:\/\/www.sintel.com\/wp-content\/uploads\/unnamed.jpg\" alt=\"Slide 3\"><\/a>\r\n        <\/div>\r\n        <!-- Duplicate slides for seamless loop -->\r\n        <div class=\"slide\">\r\n            <a href=\"https:\/\/example.com\/link1\"><img decoding=\"async\" src=\"https:\/\/www.sintel.com\/wp-content\/uploads\/Maxion-1.jpg\" alt=\"Slide 1\"><\/a>\r\n        <\/div>\r\n        <div class=\"slide\">\r\n            <a href=\"https:\/\/www.sintel.com\/pt\/agc-glass-europe-case-studies\/\"><img decoding=\"async\" src=\"https:\/\/www.sintel.com\/wp-content\/uploads\/AGC-GLASS-EUROPE-1.jpg\" alt=\"Slide 2\"><\/a>\r\n        <\/div>\r\n        <div class=\"slide\">\r\n            <a href=\"https:\/\/www.sintel.com\/pt\/agco\/\"><img decoding=\"async\" src=\"https:\/\/www.sintel.com\/wp-content\/uploads\/unnamed.jpg\" alt=\"Slide 3\"><\/a>\r\n        <\/div>\r\n    <\/div>\r\n    <div class=\"dots\">\r\n        <!-- Dots should match the number of unique slides -->\r\n        <span class=\"dot\"><\/span>\r\n        <span class=\"dot\"><\/span>\r\n        <span class=\"dot\"><\/span>\r\n    <\/div>\r\n<\/div>\r\n\r\n<script>\r\n    const slidesContainer = document.querySelector('.slides');\r\n    const slides = document.querySelectorAll('.slide');\r\n    const dots = document.querySelectorAll('.dot');\r\n    const slidesPerView = 3;\r\n    const totalSlides = slides.length;\r\n    const totalDots = dots.length;\r\n    let currentIndex = 0;\r\n\r\n    function updateSlidePosition() {\r\n        const offset = -currentIndex * (100 \/ slidesPerView);\r\n        slidesContainer.style.transform = `translateX(${offset}%)`;\r\n        updateDots();\r\n    }\r\n\r\n    function updateDots() {\r\n        dots.forEach((dot, index) => {\r\n            dot.classList.toggle('active', index === Math.floor(currentIndex \/ slidesPerView));\r\n        });\r\n    }\r\n\r\n    function nextSlide() {\r\n        currentIndex = (currentIndex + 1) % totalSlides;\r\n        updateSlidePosition();\r\n    }\r\n\r\n    function handleTransitionEnd() {\r\n        if (currentIndex >= totalSlides - slidesPerView) {\r\n            slidesContainer.style.transition = 'none';\r\n            currentIndex = 0;\r\n            updateSlidePosition();\r\n            setTimeout(() => {\r\n                slidesContainer.style.transition = 'transform 0.5s ease-in-out';\r\n            }, 20); \/\/ Delay to allow transition style to apply\r\n        }\r\n    }\r\n\r\n    slidesContainer.addEventListener('transitionend', handleTransitionEnd);\r\n    dots.forEach((dot, index) => {\r\n        dot.addEventListener('click', () => {\r\n            currentIndex = index * slidesPerView;\r\n            updateSlidePosition();\r\n        });\r\n    });\r\n\r\n    setInterval(nextSlide, 3000);\r\n    updateSlidePosition();\r\n<\/script>\r\n\r\n<\/body>\r\n<\/html>\r\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-b5ab2c0 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b5ab2c0\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c1c10a4\" data-id=\"c1c10a4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Image Slider with Links, Autoplay, and Dots<\/p>","protected":false},"author":7,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-13075","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>testing - Connect | Scale | Evolve<\/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.sintel.com\/pt\/testing\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"testing - Connect | Scale | Evolve\" \/>\n<meta property=\"og:description\" content=\"Image Slider with Links, Autoplay, and Dots\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sintel.com\/pt\/testing\/\" \/>\n<meta property=\"og:site_name\" content=\"Connect | Scale | Evolve\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-30T08:17:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sintel.com\/wp-content\/uploads\/Maxion-1.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sintel.com\\\/testing\\\/\",\"url\":\"https:\\\/\\\/www.sintel.com\\\/testing\\\/\",\"name\":\"testing - Connect | Scale | Evolve\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sintel.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sintel.com\\\/testing\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sintel.com\\\/testing\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sintel.com\\\/wp-content\\\/uploads\\\/Maxion-1.jpg\",\"datePublished\":\"2024-07-30T04:29:17+00:00\",\"dateModified\":\"2024-07-30T08:17:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sintel.com\\\/testing\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sintel.com\\\/testing\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.sintel.com\\\/testing\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.sintel.com\\\/wp-content\\\/uploads\\\/Maxion-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.sintel.com\\\/wp-content\\\/uploads\\\/Maxion-1.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sintel.com\\\/testing\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sintel.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"testing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sintel.com\\\/#website\",\"url\":\"https:\\\/\\\/www.sintel.com\\\/\",\"name\":\"Connect | Scale | Evolve\",\"description\":\"Automotive EDI integration\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.sintel.com\\\/#organization\"},\"alternateName\":\"Sintel. Connect. Scale. Evolve.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sintel.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.sintel.com\\\/#organization\",\"name\":\"Connect | Scale | Evolve\",\"alternateName\":\"Sintel. Connect. Scale. Evolve.\",\"url\":\"https:\\\/\\\/www.sintel.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.sintel.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.sintel.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Sintel-Logo.svg\",\"contentUrl\":\"https:\\\/\\\/www.sintel.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Sintel-Logo.svg\",\"width\":94,\"height\":32,\"caption\":\"Connect | Scale | Evolve\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sintel.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"testing - Connect | Scale | Evolve","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.sintel.com\/pt\/testing\/","og_locale":"pt_BR","og_type":"article","og_title":"testing - Connect | Scale | Evolve","og_description":"Image Slider with Links, Autoplay, and Dots","og_url":"https:\/\/www.sintel.com\/pt\/testing\/","og_site_name":"Connect | Scale | Evolve","article_modified_time":"2024-07-30T08:17:54+00:00","og_image":[{"url":"https:\/\/www.sintel.com\/wp-content\/uploads\/Maxion-1.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. tempo de leitura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sintel.com\/testing\/","url":"https:\/\/www.sintel.com\/testing\/","name":"testing - Connect | Scale | Evolve","isPartOf":{"@id":"https:\/\/www.sintel.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sintel.com\/testing\/#primaryimage"},"image":{"@id":"https:\/\/www.sintel.com\/testing\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sintel.com\/wp-content\/uploads\/Maxion-1.jpg","datePublished":"2024-07-30T04:29:17+00:00","dateModified":"2024-07-30T08:17:54+00:00","breadcrumb":{"@id":"https:\/\/www.sintel.com\/testing\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sintel.com\/testing\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.sintel.com\/testing\/#primaryimage","url":"https:\/\/www.sintel.com\/wp-content\/uploads\/Maxion-1.jpg","contentUrl":"https:\/\/www.sintel.com\/wp-content\/uploads\/Maxion-1.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sintel.com\/testing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sintel.com\/"},{"@type":"ListItem","position":2,"name":"testing"}]},{"@type":"WebSite","@id":"https:\/\/www.sintel.com\/#website","url":"https:\/\/www.sintel.com\/","name":"Connect | Scale | Evolve","description":"Automotive EDI integration","publisher":{"@id":"https:\/\/www.sintel.com\/#organization"},"alternateName":"Sintel. Connect. Scale. Evolve.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sintel.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/www.sintel.com\/#organization","name":"Connect | Scale | Evolve","alternateName":"Sintel. Connect. Scale. Evolve.","url":"https:\/\/www.sintel.com\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.sintel.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.sintel.com\/wp-content\/uploads\/2023\/06\/Sintel-Logo.svg","contentUrl":"https:\/\/www.sintel.com\/wp-content\/uploads\/2023\/06\/Sintel-Logo.svg","width":94,"height":32,"caption":"Connect | Scale | Evolve"},"image":{"@id":"https:\/\/www.sintel.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.sintel.com\/pt\/wp-json\/wp\/v2\/pages\/13075","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sintel.com\/pt\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sintel.com\/pt\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sintel.com\/pt\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sintel.com\/pt\/wp-json\/wp\/v2\/comments?post=13075"}],"version-history":[{"count":0,"href":"https:\/\/www.sintel.com\/pt\/wp-json\/wp\/v2\/pages\/13075\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sintel.com\/pt\/wp-json\/wp\/v2\/media?parent=13075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}