码迷,mamicode.com
首页 > 移动开发 > 详细

鼠标滑过元素,div显示,并根据scrollTop向下移动

时间:2018-01-11 22:16:57      阅读:391      评论:0      收藏:0      [点我收藏+]

标签:col   dex   很多   out   定位   hover   分享图片   off   clear   

技术分享图片

如上图所示,通道有很多个,表格只有一个。

注意:滑过通道时鼠标如果停留在上面,那么表格才显示,鼠标滑过表格时,表格不消失

<div id="lineContent">

  <p class=‘channel‘></p>

  <span class=‘channelName‘></span>

  <p class=‘channel‘></p>

  <span class=‘channelName‘></span>

  <p class=‘channel‘></p>

  <span class=‘channelName‘></span>

  <p class=‘channel‘></p>

  <span class=‘channelName‘></span>

  <p class=‘channel‘></p>

  <span class=‘channelName‘></span>

</div>

<div class=‘collections_content‘>

  <div class="title">积压信息  <span class="thisChannelName"></span> </div>

  <table class="table table-hover table-striped" id="backlogGrid"></table>

</div>

//样式我就不加了

//collections_content 根据定位

//下面是js

    var detailShowLock = null;
            var detailCloseLock = null;
            function clearLockedTimeOut() {
                if (detailShowLock) {
                    clearTimeout(detailShowLock);
                }
                if (detailCloseLock) {
                    clearTimeout(detailCloseLock);
                }
            }
            $("#lineContent").on(‘mouseover‘, ‘.channel‘, function (e) {
                clearLockedTimeOut();
                var _self = this;
                detailShowLock = setTimeout(function () {
                    var index = $(_self).attr(‘data-index‘);
                    var top = $(_self).offset().top;
                    $(".collections_content").show().css({‘top‘:(top - 200 / 2 - 5)});
                    self.getChannelGrid(index);
                }, 250);
            })
            $("#lineContent").on(‘mouseout‘, ‘.channel‘, function (e) {
                clearLockedTimeOut();
                detailCloseLock = setTimeout(function () {
                    $(".collections_content").hide();
                }, 250);
            });
            $(‘.collections_content‘).hover(function () {
                clearLockedTimeOut();
                $(this).show();
            }, function () {
                clearLockedTimeOut();
                detailCloseLock = setTimeout(function () {
                    $(".collections_content").hide();
                }, 250);
            });

//根据需求做出来的

鼠标滑过元素,div显示,并根据scrollTop向下移动

标签:col   dex   很多   out   定位   hover   分享图片   off   clear   

原文地址:https://www.cnblogs.com/fmixue/p/8270484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!