Skip to content
Industrial Valves
Various
Air Valves
Hand pumps
Industrial Valves
Various
Air Valves
Hand pumps
CONTACT
Angle float valve
Product Categories
Air Valves
(8)
Angle float valve
(0)
Guillotine Valve
(0)
Hand pumps
(4)
Industrial Valves
(67)
Ball valves
(8)
Butterflies
(7)
Butterfly Accessories
(13)
Check Valves
(15)
Foot Valves
(4)
Metal Seat Gate Valves
(9)
Resilient Seated Gate Valves
(11)
Novelties
(8)
Various
(17)
APPLICATIONS
HIGHEST TEMPERATURE
It looks like we can't find what you're looking for.
/* ========================================== TRANSICIÓN FILTROS — BORJA VALVES ========================================== */ .bv-shop-main{ transition: opacity .25s ease, transform .25s ease; } /* Cuando hacemos clic */ .bv-shop-main.bv-shop-leaving{ opacity:0; transform:translateY(7px); pointer-events:none; } /* Cuando llegamos a la nueva página */ html.bv-shop-entering .bv-shop-main{ opacity:0; transform:translateY(7px); } /* ========================================== FADE FILTROS TIENDA ========================================== */ (function(){ /* * Si venimos de haber pulsado un filtro, * marcamos la nueva página antes de mostrar * los productos. */ if( sessionStorage.getItem('bvShopTransition') === '1' ){ document.documentElement.classList.add( 'bv-shop-entering' ); } document.addEventListener( 'DOMContentLoaded', function(){ const main = document.querySelector( '.bv-shop-main' ); /* ============================== FADE IN ============================== */ if( sessionStorage.getItem('bvShopTransition') === '1' ){ sessionStorage.removeItem( 'bvShopTransition' ); requestAnimationFrame(function(){ requestAnimationFrame(function(){ document.documentElement .classList.remove( 'bv-shop-entering' ); }); }); } /* ============================== CLIC EN FILTROS / CATEGORÍAS ============================== */ document.addEventListener( 'click', function(event){ const link = event.target.closest( '.bv-shop-sidebar a[href]' ); if(!link){ return; } /* * No interferimos con: * Cmd + click * Ctrl + click * nueva pestaña... */ if( event.metaKey || event.ctrlKey || event.shiftKey || event.altKey ){ return; } const url = new URL( link.href, window.location.href ); /* * Solo enlaces internos */ if( url.origin !== window.location.origin ){ return; } event.preventDefault(); if(main){ main.classList.add( 'bv-shop-leaving' ); } sessionStorage.setItem( 'bvShopTransition', '1' ); /* * Esperamos al fade-out * antes de navegar. */ setTimeout(function(){ window.location.href = url.href; }, 230); } ); } ); })();