Angle float valve

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); } ); } ); })();