美文网首页
获取元素坐标给另一个div

获取元素坐标给另一个div

作者: 追风筝的一朵云 | 来源:发表于2019-08-12 15:23 被阅读0次

    //悬停出现对应下拉

        $(function(){

            $(".ivu-dropdown").mousemove(function(){

                var index_num =$(".ivu-dropdown").index(this);

                $('.ivu-select-dropdown').css('position', 'absolute');

                $('.ivu-select-dropdown').css('top', $('.ivu-dropdown').eq(index_num).offset().top + 20);

                console.log(index_num)

                $('.ivu-select-dropdown').css('left',$('.ivu-dropdown').eq(index_num).offset().left - 20);

                $('.ivu-select-dropdown').css('will-change','top');

                $('.ivu-select-dropdown').show();

                $('.ivu-select-dropdown').hover(function(){

                    $(this).show()

                },function(){

                    $(this).hide();

                })

            })

            $(".ivu-dropdown").mouseleave(function(){

                $('.ivu-select-dropdown').hide();

            })

        })

    相关文章

      网友评论

          本文标题:获取元素坐标给另一个div

          本文链接:https://www.haomeiwen.com/subject/qheujctx.html