Patch Cord "Skinny" Cat6A UTP, 5ft, Diámetro Reducido 28 AWG, CM/LSOH, Color Azul
- Diámetro reducido de 5.3 mm para mejor flujo de aire
- Reducción del 40% en tamaño vs cables 6A tradicionales
- Compatibilidad con PoE Tipo 1, 2, 3 y 4
- Radio de curvatura mínimo de 25 mm
- Aislamiento metálico patentado para rendimiento NEXT superior
Especificaciones del Producto
El cable modular SkinnyPatch 6A UTP de Siemon ofrece un rendimiento de categoría 6A con un diámetro reducido para mejorar el flujo de aire y aumentar la flexibilidad en áreas de conexión de alta densidad. Su construcción de cobre trenzado de 28 AWG permite un radio de curvatura más ajustado, facilitando el enrutamiento y la gestión del cable, lo que ahorra espacio en racks y gabinetes. Además, cuenta con un aislador metálico patentado para un rendimiento excepcional de NEXT y un sistema de alivio de tensión de 360 grados para una conexión segura.
Características Principales
- Reducción del 40% en diámetro comparado con cables 6A UTP tradicionales
- Compatibilidad con PoE Tipo 1, 2, 3 y 4
- Jacket CM/LSOH resistente a llamas
- Radio de curvatura mínimo de 25 mm (1.0 in)
- Patentado aislador metálico para un rendimiento excepcional de NEXT
- Conformidad con estándares TIA-568.2-D, ISO/IEC 11801-1 Class Eca y más
{
thumb.classList.remove('active');
});
// Agregar clase activa a la miniatura seleccionada
element.classList.add('active');
// Quitar zoom si estaba activo
document.getElementById('mainImageContainer').classList.remove('zoomed');
}
// Alternar zoom al hacer clic en la imagen principal
document.getElementById('mainImageContainer').addEventListener('click', function() {
this.classList.toggle('zoomed');
});
// Actualizar cantidad
function updateQuantity(change) {
const input = document.getElementById('quantity');
let value = parseInt(input.value) || 1;
const max = parseInt(input.max) || 1;
value += change;
if (value < 1) value = 1;
if (value > max) value = max;
input.value = value;
}
// Mostrar alerta personalizada
function showAlert(message, isSuccess = true) {
const alertMsg = $('#alertMessage');
alertMsg.text(message);
alertMsg.css('background-color', isSuccess ? '#28a745' : '#dc3545');
// Cambiar icono según el tipo de mensaje
const icon = isSuccess ? 'fa-check-circle' : 'fa-exclamation-circle';
alertMsg.html(`${message}`);
alertMsg.fadeIn();
setTimeout(() => {
alertMsg.fadeOut();
}, 3000);
}
// Añadir al carrito con loader y mensaje
function addToCart(productId, quantity, checkout = false) {
quantity = parseInt(quantity) || 1;
if (quantity < 1) quantity = 1;
// Mostrar loader
$('#loaderOverlay').fadeIn();
$.post('controller/carro/functions.php', {
ppo: 'add',
id: productId,
cant: quantity
}, function(response) {
// Ocultar loader
$('#loaderOverlay').fadeOut();
try {
const data = typeof response === 'object' ? response : JSON.parse(response);
if (data.success) {
updateCartCount();
showAlert('Producto agregado correctamente');
if (checkout) {
setTimeout(() => {
window.location.href = 'envio.php'
}, 500);
}
} else {
showAlert(data.message || 'Error al agregar el producto', false);
}
} catch (e) {
updateCartCount();
showAlert('Producto agregado correctamente');
if (checkout) {
setTimeout(() => {
window.location.href = 'envios.php'
}, 500);
}
}
}).fail(function(xhr, status, error) {
$('#loaderOverlay').fadeOut();
showAlert('Error de conexión al servidor', false);
console.error('Error al agregar al carrito:', error);
});
}
// Actualizar contador del carrito
function updateCartCount() {
$.post('controller/carro/functions.php', { ppo: 'count' }, function(count) {
$('.cart-count').text(count);
});
}
// Scroll to top
document.querySelector('.scroll-to-top').addEventListener('click', function(e) {
e.preventDefault();
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Mostrar/ocultar botón de scroll
window.addEventListener('scroll', function() {
const scrollBtn = document.querySelector('.scroll-to-top');
if (window.scrollY > 300) {
scrollBtn.style.display = 'flex';
} else {
scrollBtn.style.display = 'none';
}
});
// Inicializar contador del carrito
$(document).ready(function() {
updateCartCount();
});