Scroll content automatically in an overflow:none e

2019-07-15 11:55发布

问题:

I have mixed content (images, text) in an overflow:none element. Now, I'd like to automatically scroll that content in x/y axis based on the location of the mouse pointer. Overflow:auto wouldn't be an option, as I wouldn't like to show/use the scrollbars in that element.

I've found a script which does something similar, but only with the background image. Is there a way to have a similar effect but with moving the whole content of the div? Thank you for your answers in advance!

<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Test jQuery Move Background with Mouse Move</title>
  <link rev="made" href="mailto:covertlinks [ at ] gmail [ dot ] com" />
  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  <meta name="generator" content="NoteTab Pro 5.5" />
  <meta name="author" content="Perry Wolf" />
  <meta name="description" content="" />
  <meta name="keywords" content="" />
<script type="text/javascript" src="jquery.1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    var vH=$('#viewer').height();
    var vW=$('#viewer').width();
    var vT=$('#viewer').offset().top;
    var vL=$('#viewer').offset().left;
    $('#viewer').mousemove(function(e){
        var ypos=e.pageY-vT;
        var xpos=e.pageX-vL;
        var y=Math.round(ypos/vW*100);
        var x=Math.round(xpos/vH*100);
        $('#test').val(x+' , '+y);
        $('#viewer').css({backgroundPosition: x+'% '+y+'%'});
    });
});
</script>
</head>
<body style="color:#FFFFFF;background:#102030;text-align:center;">
<h1 style="text-align:center;">Test Move Background on Mousemove:</h1>
<div id="viewer" style="border:solid 1px #FFFFFF;margin:50px auto 0px auto;width:400px;height:400px;background:url(ironhide1024x768.jpg) 0% 0% no-repeat;cursor:url(target_cursor.gif), crosshair;text-align:center;line-height:300px;">
</div>
<input type="text" id="test" size="30" style="display:block;margin:10px auto;width:150px;" />
</body>
</html>

回答1:

This was a fun one! Change it so you move the scrollTop and scrollLeft instead of background position. Since you have a percentage you could calculate the of scrollTop and scrollLeft like so. Check out the fiddle.

$(document).ready(function(){
    var viewer = $('#viewer'),
        vH = viewer.height(),
        vW = viewer.width(),
        vT = viewer.offset().top,
        vL = viewer.offset().left,
        sTop = viewer.find(':first').height() + 18 - vH,
        sLeft = viewer.find(':first').width() + 18 - vW;
    // the sTop and sLeft could be calculated differently. In this case 
    // I am assuming that the viewer has a single child that is larger than itself.
    // realistically this should check total possible scrollTop and scrollLeft

    $('#viewer').mousemove(function(e){
        var $this = $(this),
            y = (e.pageY-vT)/vH,
            x = (e.pageX-vL)/vW;
        $this.scrollTop(Math.round(sTop * y))
            .scrollLeft(Math.round(sLeft * x));
    });
});