#play-btn { width: 0; height: 0; border-style: solid; border-width: 20px 0 20px 40px; border-color: transparent transparent transparent #ffffff; } .tres-jolie-card:hover .second-card-image { opacity: 1; }

Très Jolie

A collection of what we love, including product that would traditionally sit outside the confines of a beauty brand
document.addEventListener('DOMContentLoaded', function () { const playBtn = document.querySelectorAll('#play-btn'); playBtn.forEach(item => { item.addEventListener('click', function (e) { const posterWrapper = this.closest('.play-btn__wrapper'); const video = this.closest('.play-btn__wrapper').previousElementSibling; posterWrapper.classList.add('hidden'); if (video.paused == true) { video.play() video.setAttribute("controls", "controls"); } e.preventDefault(); }) }) })