✦ Verified product
A4 Sublimation Paper (8.5" x 11)
USD 19.99
NGOODIEZ
Verified independent store
→
Sheet size: A4 (8.5" x 11" / 216 x 279 mm) Compatibility: works with any inkjet printer with sublimation ink (Epson, HP, Canon, Ricoh, Sawgrass, etc) Print on the white side #subli
mation-calculator { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; max-width: 100%; margin: 20px auto; padding: 15px; background-color: #f8f8f8; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); box-sizing: border-box; } #sublimation-calculator h3 { color: #333; font-size: 1.3em; margin-bottom: 15px; text-align: center; } #fabric-select { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 16px; appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center/20px auto; } #result, #care-tips { background-color: #fff; padding: 15px; border-radius: 5px; margin-top: 15px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } #result p, #care-tips p { margin: 0 0 10px 0; line-height: 1.6; } .setting { display: flex; justify-content: space-between; margin-bottom: 5px; flex-wrap: wrap; } .setting-label { font-weight: bold; margin-right: 10px; } h4 { margin: 0 0 10px 0; color: #333; font-size: 1.1em; } ul { margin: 0; padding-left: 20px; } li { margin-bottom: 5px; } @media (max-width: 480px) { #sublimation-calculator { padding: 10px; } #sublimation-calculator h3 { font-size: 1.2em; } .setting { flex-direction: column; } .setting-label { margin-bottom: 2px; } } Sublimation Settings Calculator Select a fabric Polyester Nylon Acrylic Poly-Cotton Blend Spandex/Lycra 100% Cotton document.getElementById('fabric-select').addEventListener('change', function() { var fabricData = { polyester: { temp: 385, pressure: 40, time: 45, tips: [ "Wait at least 24 hours before washing after sublimation.", "Wash inside out in cold water.", "Avoid using bleach or harsh detergents.", "Tumble dry on low heat or hang to dry." ] }, nylon: { temp: 390, pressure: 40, time: 40, tips: [ "Wait 48 hours before washing after sublimation.", "Hand wash in cold water or use gentle cycle.", "Do not use fabric softener.", "Air dry or tumble dry on low heat." ] }, acrylic: { temp: 380, pressure: 45, time: 50, tips: [ "Allow to cool completely before handling.", "Hand wash in lukewarm water.", "Do not wring or twist the fabric.", "Lay flat to dry." ] }, "poly-cotton": { temp: 365, pressure: 35, time: 30, tips: [ "Wait 24 hours before washing after sublimation.", "Wash in cold water on gentle cycle.", "Avoid high heat when drying.", "Iron on low heat if necessary, avoiding direct heat on the print." ] }, spandex: { temp: 370, pressure: 30, time: 35, tips: [ "Allow to cool and set for 24 hours before washing.", "Hand wash in cold water or use delicate cycle.", "Do not use bleach or fabric softener.", "Hang to dry, avoid direct sunlight." ] }, cotton: { temp: 380, pressure: 40, time: 50, tips: [ "Wait 48 hours before washing after sublimation.", "Wash in cold water on gentle cycle.", "Avoid harsh detergents and bleach.", "Tumble dry on low heat or hang to dry." ] } }; var fabric = this.value; var resultDiv = document.getElementById('result'); var careTipsDiv = document.getElementById('care-tips'); if (fabric in fabricData) { var data = fabricData[fabric]; resultDiv.innerHTML = 'Recommended settings for ' + fabric + ':' + 'Temperature: ' + data.temp + '°F' + 'Pressure: ' + data.pressure + ' PSI' + 'Time: ' + data.time + ' seconds'; careTipsDiv.innerHTML = 'Care Tips:' + data.tips.map(tip => '' + tip + '').join('') + ''; } else { resultDiv.innerHTML = ''; careTipsDiv.innerHTML = ''; } });