CSS悬停卡定位

inn*_*ion 20 html javascript css jquery css3

我正在尝试制作一张悬停卡css.我有一个关于页面位置的问题.

我已经从codepen.io 创建了这个DEMO页面.因此,如果您位于演示页面的底部,那么您会看到气泡div显示出来.

我该怎么做才能.bubble在页面底部显示三角形? 在此输入图像描述

.container{
  width:400px;
  height:400px;
  margin:0px auto;
  margin-top:50px;
}
.bubble 
{
position: absolute;
width: 250px;
height: 120px;
padding: 0px;
background: #000;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
  display:none;
}

.bubble:after 
{
content: '';
position: absolute;
border-style: solid;
border-width: 0 15px 15px;
border-color: #000 transparent;
display: block;
width: 0;
z-index: 1;
top: -15px;
left: 194px;
}
.hub:hover .bubble{
  display:block;
}
.wrp{
  width:300px;
  height:68px;
}
Run Code Online (Sandbox Code Playgroud)

Boj*_*ski 10

编辑

我已经制作了一个jQuery插件来解决这个问题,重新定位工具提示以保持在窗口内,简单和响应.你可以看到在行动在这里TIPSO

我分叉你的codepen并在codepen上重新编写

我想这就是你要找的:)

$('.hub').on({
  mouseenter: function() {
    $(this).addClass('zIndex');

    var top, left,
      toolTipWidth = 250,
      toolTipHeight = 120,
      arrowHeight = 15,
      elementHeight = $(this).height(),
      elementWidth = $(this).width(),
      documentHeight = $(window).height(),
      bounding = $(this)[0].getBoundingClientRect(),
      topHub = bounding.top;


    if (topHub < topHub + toolTipHeight && topHub + toolTipHeight + arrowHeight + elementHeight <= documentHeight) {

      $('.bubble').addClass('top');
      top = elementHeight + arrowHeight;
      left = -(elementWidth / 2);

    }

    if (topHub + toolTipHeight + arrowHeight + elementHeight >= documentHeight) {
      $('.bubble').addClass('bottom');
      top = -toolTipHeight - arrowHeight;
      left = -(elementWidth / 2);
    }


    $('.bubble').css({
      'top': top,
      'left': left
    });
  },
  mouseleave: function() {
    $('.bubble').removeClass('top bottom');
    $(this).removeClass('zIndex');
  }
});
Run Code Online (Sandbox Code Playgroud)