Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

178
Vistas
Haga que el desplazamiento siga al mouse o fuerce (Disparar) la rueda del mouse

Estoy tratando de hacer que el scroll siga la altura del mouse, se que parece fácil, pero no logro hacerlo correctamente,

Estaba intentando algo como esto, esta función se activa siempre que se mueve el mouse.

 function moveScroll ($event){ var height = $event.event.clientY; window.scrollTo(0, height); }

Parece que esto no funciona, especialmente cuando estoy en una página web con un iframe dentro. La otra opción que pensé es forzar el evento de clic de la rueda del mouse, lo que sería increíble, pero tampoco puedo hacerlo...

Me estoy quedando sin ideas, así que si pudieras ayudarme, sería increíble.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

ah, vi esta pregunta y probé... Tengo un intervalo, 3 variables globales y una devolución de llamada para el evento mousedown

 var constX=0, constY=0, constant=7 //the lower the value of constant, the faster the scrolling(1 scrolls the difference of center and your cursor instantly, 3 scrolls 1/3 of that difference and so forth) //spotX and spotY are for creating a "safe space" in the center of one's screen that won't scroll once your mouse is in those boundaries //width scroll boundary is currently 1/2 the screen's width(1/4 screen on each horizontal half of the middle) //height scroll boundary is currently 1/3 of the screen's height(1/6 screen on each vertical half of the middle) var centerX=innerWidth/2, centerY=innerHeight/2 let s=setInterval(()=>{ const {round}=Math let x=round( ((constX-centerX)/constant)+scrollX ) let y=round( ((constY-centerY)/constant)+scrollY ) if(constX===0){x=scrollX} if(constY===0){y=scrollY} window.scrollTo(x,y) },30) function moveScroll(ev){ centerX=innerWidth/2, centerY=innerHeight/2 var spotX=innerWidth/4, spotY=innerHeight/6 var [height,width]=[ev.clientY,ev.clientX] let isSpotX=Math.abs(width-centerX)<=spotX let isSpotY=Math.abs(height-centerY)<=spotY if(isSpotX&&isSpotY){return constX=0, constY=0} //comment this line out to disable the safe space logic constX=width, constY=height } window.addEventListener('mousemove',moveScroll)
 <div id="here" style="width:8000px;height:6000px"></div> <script> //this block is for filling a scroll area with colour (()=>{ let list=["lightblue","red","purple","yellow","green","orange","teal","brown","black"], i=0 for(let y=0;y<60;y++){ let span=document.createElement('div') for(let x=0;x<80;x++){ let div=document.createElement('div') div.style["background-color"]=list[i++%list.length] div.style.height="100px", div.style.width="100px" span.appendChild(div) } span.style.display="flex" document.getElementById('here').appendChild(span) } })() </script>

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda