Lihat Semua Produk โบ
๐๏ธ
<>
/* =====================================================
TULISAN MUNCUL SETIAP 25 DETIK
====================================================== */
(function () {
const button =
document.querySelector(
'.floating-product-wrapper'
);
if (!button) return;
function showProductLabel() {
/* tampilkan tulisan */
button.classList.add('show-label');
/* sembunyikan setelah 5 detik */
setTimeout(function () {
button.classList.remove(
'show-label'
);
}, 5000);
}
/* Muncul pertama kali setelah 25 detik */
setTimeout(function () {
showProductLabel();
/* kemudian setiap 25 detik */
setInterval(
showProductLabel,
25000
);
}, 25000);
})();