根据鼠标输入位置滑动div内的元素

时间:2011-07-28 12:46:51

标签: javascript jquery mouse position slide

我想滑入div中的元素,但滑动位置应该有所不同。

<div class="block">
    <div class="hover">…</div>
</div>

如果用户从左侧输入div,则元素应从左侧滑动,如果从右侧滑动,则元素应从右侧滑入,对于其他侧面则相同。

同样对于top / bottom,我将需要保存到变量,用户输入div的一侧并根据变量的值触发函数。

如何确定方向/位置?我正在使用jQuery libraray,但普通的JavaScript也是可以接受的。

2 个答案:

答案 0 :(得分:1)

基本上,您需要做的是使用jQuery的mouseover并从事件对象获取clientX和clientY。然后将该信息与offset(),height()和width()结合使用,以确定它们来自<div>的哪一侧。例如:

<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title></title>
</head>
  <body>
  <div id="box" style="width:200px;height:200px;background:red;position:absolute;top:100px;left:100px;"><div id="cover" style="position:absolute;background:blue;width:0;height:0;overflow:hidden;z-index:50;"></div></div>

    <script>
$(function(){
  var $box = $('#box').mouseenter(function(event){
    // coming from the top
    if (Math.abs(event.pageY - offset.top) < 10) {
      $cover.css('width',width).animate({
        height:height
      })
    }
    //coming from the left
    else if (Math.abs(event.pageX - offset.left) < 10) {
      $cover.css('height',height).animate({
        width:width
      })
    }
    //coming from the bottom
    else if (Math.abs(event.pageY - (offset.top + height)) < 10) {
      $cover.css({
        width:width,
        top:'auto',
        bottom:0
      }).animate({
        height:height
      })
    }
    //coming from the right
    else {
      $cover.css({
        height:height,
        left:'auto',
        right:0
      }).animate({
        width:width
      })
    }
  }).mouseleave(function(){
    // reset it
    $cover.css({
      width:0,
      height:0,
      bottom:'auto',
      right:'auto',
      left:'auto',
      top:'auto'
    })
      }), $cover = $('#cover'), offset = $box.offset(), width = $box.width(), height = $box.height()
})
</script>
</body>
</html>

(抱歉等待;)

答案 1 :(得分:0)

这是我更新的样本,未经测试 - 但它应该有效。

$(".block").mouseenter(function(event){
  if(!$(".hover").is(":animated")){
        if(event.pageX > ($(".block").position().left + ($(".block").width()/2)))
        {
              $(".hover").css("left", "-100px");
        } else {
              $(".hover").css("left", "200px");
        {
        $(".hover").animate({ left : 0 },300);
  }
});

CSS

.block {
  position: relative;
  height: 100px;
  width: 100px;
  overflow: hidden;
  background-color: #fff;
}
.block .hover {
  position: absolute;
  left: -100px;
  height: 100px;
  width: 100px;
  background-color: #00f;
}