改变CSS溢出隐藏行为

时间:2013-11-26 19:50:47

标签: javascript jquery html css

所以,我在jQuery中制作了一个简单的动画进度条。 you can view it here.

我在这篇文章中需要一些代码,所以这是我的CSS:

.progress {
  height: 14px;
  width: 300px;
  background: #111;
  border-radius: 5px;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  color: white;        
}

.filename {
  font-size: 10px;
  color: white;
  position: relative;
}

.progresstop {  
  padding: 4px;
  width: 40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; 
  height: 8px;
  float: left;
  background: #c44639;
  vertical-align: middle;
  display: inline-block;
}

.arrow-right {
  width: 0px;
  height: 0px;
  border-style: solid;
  background: #111;
  border-width: 7px 7px 7px ;
  border-color: transparent transparent transparent #c44639;
  float: left;
  display: inline-block;
}

我的问题:当进度条到达结尾时,元素“pop”在它们溢出div并且被隐藏时不存在,而不是在它们完全脱离div之前保持可见。具体来说,当CSS箭头到达末尾时消失,进度条的末尾从三角形变为一条线,这实际上是视觉上的不和谐。有没有办法改变这种行为,无论是在CSS还是jQuery,让元素隐藏“顺利”?

2 个答案:

答案 0 :(得分:5)

您正在寻找white-space: pre

Here is an updated example - 它现在的效果如何。

.filename {
    white-space: pre;
}

修改

如果要删除动画结尾处的毛刺(箭头跳转到新行),请使用以下标记/ CSS:

jsFiddle example - 现在减少HTML,因为箭头是一个伪元素。

HTML

<div class='progress'>
    <div class='progresstop'></div>
    <div class='arrow-right'></div> /* Removed this, and made the arrow a psuedo element. */
    <div class='filename'>FILENAME</div>
</div>

CSS

.filename:before {
    content:"\A";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 7px 7px 7px;
    border-color: transparent transparent transparent #c44639;
    position:absolute;
}

答案 1 :(得分:5)

与JoshC的答案一致,

你可以将它包装在像this fiddle

这样的容器中

HTML

<div id="progress-container">
    <div class='progress'>
        <div class='progresstop'></div>
        <div class='arrow-right'></div>
        <div class='filename'>FILENAME</div>
    </div>
</div>

CSS

#progress-container {
    height: 14px;
    width: 300px;
    background: #111;
    border-radius: 5px;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    color: white;
}

.progress {
    height: 14px;
    width: 500px; /* large value */
}

确保.progess宽度大于您需要的宽度(文本,箭头和条形)