我想在 jQuery 中实现鼠标移动滚动。
滚动的目的是查看完整的图像.. 以 Modal Popup 的形式出现。
此图像显示为 Div 的背景图像。
我可以使用 jQuery 在鼠标移动时上下移动图像。但问题是滚动完整图像后div的背景继续滚动事件。我必须阻止这种情况发生。
供参考,你可以看到: -
http://zovi.com/california-dream-t-shirt-white--S123RNM84602#2
单击大图像,将出现一个模式弹出窗口。滚动时,无需额外滚动即可查看完整图像。
我正在努力实现这一目标。提前致谢..
这是我的代码:-
完整的 HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
.backdrop
{
position: relative;
height: 300px; /*could be anything really..*/
width: 400px; /*could be anything really..*/
border: 3px solid #6699ff;
background: url('image/TShirt/tshirtpicZoom1.jpg') 0 0 no-repeat;
}
.direction
{
position: absolute;
width: 50%;
height: 100%;
}
.top
{
left: 0;
top: 0;
width:100%;
}
.bottom
{
left: 0;
top: 50%;
width:100%;
}
</style>
<script src="Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<script>
$(function () {
var x = 0,
y = 0,
rate = 0,
maxspeed = 10;
var backdrop = $('.backdrop');
$('.direction', backdrop).mousemove(function (e) {
var $this = $(this);
var top = $this.is('.top');
if (top) {
var h = $this.height();
rate = (h - e.pageY - $(this).offset().top + 1) / h;
}
else {
var h = $this.height();
rate = -(e.pageY - $(this).offset().top + 1) / h;
}
});
backdrop.hover(
function () {
var scroller = setInterval(moveBackdrop, 10);
$(this).data('scroller', scroller);
},
function () {
var scroller = $(this).data('scroller');
clearInterval(scroller);
}
);
function moveBackdrop() {
y += maxspeed * rate;
var newpos = x + 'px ' + y + 'px';
backdrop.css('background-position', newpos);
}
});
</script>
</head>
<body>
<div class="backdrop">
<div class="direction top">
</div>
<div class="direction bottom">
</div>
</div>
</body>
</html>