DTF Print & Press V26
About this app
Create your custom DTF prints effortlessly with our intuitive and colorful application.
DTF Print & Press V26 DTF Print & Press V26 Powered by SeaSide Silk Screening Name/PO Number Quantity 1 Qty Price Breaks: 24, 36, 48, 72, 144, 288 Product Type T-Shirt ($0) Polo ($1) Fleece ($2) Cap ($3) Print Location 1 Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) Print Location 2 Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) Print Location 3 Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) Print Location 4 Left Front Chest ($1) Right Front Chest ($1) Full Front ($2) Full Back ($2) $0
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>DTF Print & Press V26</title>
<meta name="description" content="Create your custom DTF prints effortlessly with our intuitive and colorful application.">
<meta name="keywords" content="DTF Print, Printing, Silk Screening, Custom Shirts, Quantity Pricing, Drop Down Selection">
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const quantitySlider = document.getElementById('quantity-slider');
const quantityDisplay = document.getElementById('quantity-display');
const itemPrices = {
"T-Shirt": 0,
"Polo": 1,
"Fleece": 2,
"Cap": 3
};
const locationPrices = {
"Left Front Chest": 1,
"Right Front Chest": 1,
"Full Front": 2,
"Full Back": 2
}
function calculateTotal() {
const selectedProduct = document.getElementById('product-type').value;
const selectedLocation1 = document.getElementById('print-location-1').value;
const quantity = parseInt(quantityDisplay.textContent);
const productPrice = itemPrices[selectedProduct] || 0;
const location1Price = locationPrices[selectedLocation1] || 0;
const totalPrice = (productPrice + location1Price) * quantity;
document.getElementById('total-price').textContent = `$${totalPrice}`;
}
quantitySlider.addEventListener('input', function() {
quantityDisplay.textContent = quantitySlider.value;
calculateTotal();
});
document.getElementById('product-type').addEventListener('change', calculateTotal);
document.getElementById('print-location-1').addEventListener('change', calculateTotal);
});
} catch (error) {
throw error;
}
</script>
<style>
body {
display: flex;
justify-content: center;
background-color: #f0f8ff;
color: #333;
font-family: Arial, sans-serif;
}
#main-container {
background: linear-gradient(145deg, #ffffff, #e6e6e6);
border-radius: 20px;
padding: 30px;
box-shadow: 8px 8px 15px #d1d1d1, -8px -8px 15px #ffffff;
width: 400px;
}
h1 {
color: #034f84;
}
.form-label {
font-weight: bold;
}
#quantity-slider {
width: 100%;
}
.price-breaks {
font-size: 0.8em;
color: #888;
}
#total-price {
margin-top: 20px;
font-weight: bold;
color: #e76e32;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>DTF Print & Press V26</h1>
<h5 class="text-muted">Powered by SeaSide Silk Screening</h5>
<form>
<div class="mb-3">
<label for="name-po" class="form-label">Name/PO Number</label>
<input type="text" class="form-control" id="name-po" required>
</div>
<div class="mb-3">
<label for="quantity-slider" class="form-label">Quantity</label>
<input type="range" min="1" max="500" value="1" id="quantity-slider" class="form-range">
<p id="quantity-display">1</p>
<p class="price-breaks">Qty Price Breaks: 24, 36, 48, 72, 144, 288</p>
</div>
<div class="mb-3">
<label for="product-type" class="form-label">Product Type</label>
<select id="product-type" class="form-select">
<option value="T-Shirt">T-Shirt ($0)</option>
<option value="Polo">Polo ($1)</option>
<option value="Fleece">Fleece ($2)</option>
<option value="Cap">Cap ($3)</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-1" class="form-label">Print Location 1</label>
<select id="print-location-1" class="form-select">
<option value="Left Front Chest">Left Front Chest ($1)</option>
<option value="Right Front Chest">Right Front Chest ($1)</option>
<option value="Full Front">Full Front ($2)</option>
<option value="Full Back">Full Back ($2)</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-2" class="form-label">Print Location 2</label>
<select id="print-location-2" class="form-select">
<option value="Left Front Chest">Left Front Chest ($1)</option>
<option value="Right Front Chest">Right Front Chest ($1)</option>
<option value="Full Front">Full Front ($2)</option>
<option value="Full Back">Full Back ($2)</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-3" class="form-label">Print Location 3</label>
<select id="print-location-3" class="form-select">
<option value="Left Front Chest">Left Front Chest ($1)</option>
<option value="Right Front Chest">Right Front Chest ($1)</option>
<option value="Full Front">Full Front ($2)</option>
<option value="Full Back">Full Back ($2)</option>
</select>
</div>
<div class="mb-3">
<label for="print-location-4" class="form-label">Print Location 4</label>
<select id="print-location-4" class="form-select">
<option value="Left Front Chest">Left Front Chest ($1)</option>
<option value="Right Front Chest">Right Front Chest ($1)</option>
<option value="Full Front">Full Front ($2)</option>
<option value="Full Back">Full Back ($2)</option>
</select>
</div>
<div id="total-price">$0</div>
</form>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!