2026LABOR10
A collection page of Phenyx Pro
About
Claim your Labor Day 10% OFF – enjoy the savings before time runs out. .copy-btn5 { font-size: 1.2rem; padding: 0.6rem 2rem; border: none; outline: none; border-radius: 0.4rem; cursor: pointer; font-family: "Open Sans"; text-transform: uppercase; background-color: rgb(14, 14, 26); color: rgb(234, 234, 234); font-weight: 700; transition: 0.6s; box-shadow: 0px 0px 60px 18px #00BFFF; } .copy-btn5:active { transform: scale(0.92); } .copy-btn5:hover { background: rgb(0, 65, 112); background: linear-gradient( 270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 20% ); color: rgb(4, 4, 38); } COPY function copyText(button) { var input = document.createElement('input'); var couponCode = ''; // 设置优惠码 if (button.id === 'copy-btn5') { couponCode = '2026LABOR10'; } if (couponCode) { input.value = couponCode; document.body.appendChild(input); input.select(); input.setSelectionRange(0, 99999); // Mobile support try { var successful = document.execCommand('copy'); if (successful) { button.innerHTML = 'COPIED!'; setTimeout(function() { button.innerHTML = 'COPY'; }, 3000); } else { prompt( "Long press and select 'Copy' to copy text to clipboard:", input.value ); } } catch (err) { console.log('Unable to copy text: ' + err); prompt( "Long press and select 'Copy' to copy text to clipboard:", input.value ); } document.body.removeChild(input); } }