1. 程式人生 > >文本溢出顯示省略號,CSS未加載時a標簽仍可用處理方法

文本溢出顯示省略號,CSS未加載時a標簽仍可用處理方法

結合 on() 模型 多行 方案 ott bold -o 範圍

一、文本溢出打點

(1)單行文本

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

(2)多行文本

  1. overflow : hidden;
  2. text-overflow: ellipsis;
  3. display: -webkit-box;
  4. -webkit-line-clamp: 2;
  5. -webkit-box-orient: vertical;

適用範圍:
因使用了WebKit的CSS擴展屬性,該方法適用於WebKit瀏覽器及移動端;

註:

  1. -webkit-line-clamp用來限制在一個塊元素顯示的文本的行數。 為了實現該效果,它需要組合其他的WebKit屬性。常見結合屬性:
  2. display: -webkit-box; 必須結合的屬性 ,將對象作為彈性伸縮盒子模型顯示 。
  3. -webkit-box-orient 必須結合的屬性 ,設置或檢索伸縮盒對象的子元素的排列方式 。

跨瀏覽器兼容的方案

比較靠譜簡單的做法就是設置相對定位的容器高度,用包含省略號(…)的元素模擬實現;

p {
    position:relative;
    line-height:1.4em;
    /* 3 times the line-height to show 3 lines */
    height:4.2em;
    overflow:hidden;
}
p::after {
    content:
"..."; font-weight:bold; position:absolute; bottom:0; right:0; padding:0 20px 1px 45px; background:url(http://newimg88.b0.upaiyun.com/newimg88/2014/09/ellipsis_bg.png) repeat-y; }

這裏註意幾點:

  1. height高度真好是line-height的3倍;
  2. 結束的省略號用了半透明的png做了減淡的效果,或者設置背景顏色;
  3. IE6-7不顯示content內容,所以要兼容IE6-7可以是在內容中加入一個標簽,比如用<span class="line-clamp">...</span>
    去模擬;
  4. 要支持IE8,需要將::after替換成:after
p{
  position: relative;
  line-height: 20px;
  max-height: 40px;
  overflow: hidden;
} p::after{
  content:
"...";
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 40px;   background: -webkit-linear-gradient(left, transparent, #fff 55%);   background: -o-linear-gradient(right, transparent, #fff 55%);   background: -moz-linear-gradient(right, transparent, #fff 55%);   background: linear-gradient(to right, transparent, #fff 55%); }

適用範圍:
該方法適用範圍廣,但文字未超出行的情況下也會出現省略號,可結合js優化該方法。

註:

  1. 將height設置為line-height的整數倍,防止超出的文字露出。
  2. 給p::after添加漸變背景可避免文字只顯示一半。
  3. 由於ie6-7不顯示content內容,所以要添加標簽兼容ie6-7(如:<span>…<span/>);兼容ie8需要將::after替換成:after。

2.jQuery插件-jQuery.dotdotdot

這個使用起來也很方便:

$(document).ready(function() {
    $("#wrapper").dotdotdot({
        //    configuration goes here
    });
});

二、CSS未加載時a標簽仍可用的處理方法

(1)利用上面的文字溢出處理方式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>面向對象的拖拽和繼承</title>
    <style>
        a{
            background: url(timg.jpg) center no-repeat;
            background-size: 100px 200px;
            display: inline-block;
            height: 100px;
            width: 200px;
            overflow: hidden;            
            text-indent: 200px;
            white-space: nowrap;
        }
    </style>
</head>
<body>
    <a href="http://www.taobao.com">淘寶網</a>
</body>
</html> 

(2)利用padding

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>面向對象的拖拽和繼承</title>
    <style>
        a{
            background: url(timg.jpg) center no-repeat;
            background-size: 100px 200px;
            display: inline-block;
            height: 0px;
            width: 200px;
            padding-top: 100px;
            overflow: hidden;            
        }
    </style>
</head>
<body>
    <a href="http://www.taobao.com">淘寶網</a>
</body>
</html> 

三、P元素包裹塊級元素會被截斷

文本溢出顯示省略號,CSS未加載時a標簽仍可用處理方法