Barra de luces para interior tipo visera, SAE, 12 Vcc, Soporte para camioneta Ford Police Interceptor
- Visera exclusiva, claridad impecable bajo sol
- Cable plug-n-play para instalación rápida
- Programable en modo crucero y modo intermitente
- Cumplimiento ECE R10, SAE J595 Clase 1
Especificaciones del Producto
SPD12RBU Barra de luces para interior tipo visera
Soporte para Camioneta Ford Police Interceptor
CARACTERISTICAS
■ Luz de visera para parabrisas de perfil extremadamente bajo, con montaje interior y un intenso efecto de advertencia frontal.
■ 7 cubiertas metálicas específicas para cada modelo de vehículo que se integran perfectamente en su vehículo.
■ Opciones de módulo LED: cualquier combinación de un solo color o dos colores cuenta con 43 opciones de patrones de advertencia.
■ Opciones de módulo frontal para una intensa iluminación de escena o de inundación total.
■ Posiciones programables para luces desmontables.
■ Modelos específicos del vehículo:
- Chevrolet Tahoe 2015+
- Dodge Ram 2014+
- Dodge Charger 2011+
- Dodge Durango 2013+
- Ford F150 Pickup 2013+
- Ford Police Interceptor Utility 2020+
- Modo Universal
- Chevrolet Tahoe 2022
ESPECIFICACIONES
- Cumplimiento: SAE J595, SAE J845, CA Título 13, ECE R10
- Elementos LED (/Faro):
- Monocromo: 6 LED; Bicolor: 12 LED
- Voltaje de funcionamiento: 12 VCC
- Número de patrones de advertencia: 43 patrones
- Corriente promedio (/Faro): 0.67 A a 12 VCC
- Corriente máxima (/Faro): 1.34 A a 12 VCC
- Potencia promedio (/Faro): 8.04 W
- Máx. Potencia (/Foco): 16,08 W
- Cables: Rojo-VCC: 365 cm (18 AWG x 2) Negro-GND: 365 cm (18 AWG x 2)
- Cables de función: 365 cm (24 AWG) x 6
- Fusible: 15 A
- Temperatura de almacenamiento: -40 °C a +75 °C
- Temperatura de funcionamiento: -30 °C a +65 °C
- Color del LED: Rojo, Azul, Verde, Ámbar, Blanco
- Color de la lente: Transparente
Ford Police Interceptor Utility 2020+
|
{
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();
});