*{ margin: 0; padding: 0; box-sizing: border-box; } body{ display: flex; justify-content: center; align-items: center; height: 100vh; width: 100%; background-color: rgb(8, 0, 35); } img{ width: 80%; } .menu-container{ position: relative; width: 480px; height: 480px; display: flex; justify-content: center; align-items: center; } .menu-toggle{ position: absolute; width:100px; height:100px; z-index: 1000; cursor: pointer; transition: 1.5s; border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 2px solid #010718; box-shadow: 2px 2px 2px 2px rgb(0 0 0 /58%), -2px -2px 2px 1px rgb(108 108 108 /20%), inset 2px 2px 2px 2px rgb(0 0 0 /58%), inset -2px -2px 2px 1px rgb(108 108 108 /20%); background-color: rgb(8, 0, 35); } .menu-container li a{ width: 80px; height: 80px; border-radius: 50%; border: 2px solid #010718; display: flex; justify-content: center; align-items: center; transition: 0.8s; text-decoration: none !important; box-shadow: 1px 1px 2px 2px rgb(0 0 0 /58%), -2px -2px 2px 1px rgb(108 108 108 /20%), inset 1px 1px 2px 2px rgb(0 0 0 /58%), inset -2px -2px 2px 1px rgb(108 108 108 /20%); } .menu-container li{ list-style: none; position: absolute; transform-origin: 230px; transition: 0.8s; left: 0; transition-delay: calc(0.1s * var(--i)); transform: rotate(0deg) translateX(200px); } .menu-container.active .menu-toggle{ transform: rotate(360deg); } .menu-container.active li{ transform: rotate(calc(365deg/7 * var(--i))); }
top of page
Mail
Phone
Disco Clean & Strip Scotch-Brite 987C
Lija de Agua Grado 320 JR000072
Lija de Agua Grado 180 JR000070
Fibra P-66 Blanca 3M Scotch Brite
Disco Prof. Diamante Sienna 1 Cod. 3M0079257
Disco Prof. Bonet para Alfombras Cod. 3M063110
Disco Prof. Negro de 16" Cod. 3M044401
Disco Prof. Diamante Morado 19" Cod. 3M079216
Disco Prof. Canela 19" Cod. 3M012427
Disco Prof. Blanco 19" Cod. 3M63656
Disco Hookit Gold G-P120 6" Cod. 3M000001
Disco 3M 987C
Disco 3M Silver 51771
Fibra P-76 Negra Scotch Brite
Fibra P-94 Verde/Amarilla
Fibra Verde Scotch Brite P-96
Inicio
Catálogo
Productos
Papeles y Servillrtas
Químicos
Fibras
Aromatización
Despachadores
Jarciería
Plásticos
Sobre nosotros
Contáctanos
bottom of page
$(document).ready(function(){ let isExpanded = false; $(".menu-toggle").click(function(){ isExpanded ? $(".menu-container").removeClass("active") : $(".menu-container").addClass("active"); isExpanded = !isExpanded; return }); })