1

是否可以将 div .timedistance 放在 .draggable div 的左边框上,使其看起来像这样?

在此处输入图像描述

演示:http: //jsbin.com/erofot/189

代码:

$('.draggable').hover(function(){
    $(this).find('.line').show();
                $(this).find('.timedistance').show();

}, function() {
    $(this).find('.line').hide();
      $(this).find('.timedistance').hide();


});      

      }
    });
          $(".draggable").each(function() {
   $(this).append("<div class='line'></div>");
               $(this).append("<div class='timedistance'></div>");

});

和 CSS:

.line
{
  display: none;   
  width:5px; height:200px; background:#ccc;
}
.timedistance
{
  display: none;   
  width:100px; 
  height:54px;
  background:#ccc;
}
4

1 回答 1

0

解决方案是:

margin-left: -100px;
margin-top: -54px;
于 2013-08-05T14:32:53.263 回答