中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css背景色透明但內容不透明的解決方法

發布時間:2021-08-07 23:42:12 來源:億速云 閱讀:142 作者:chen 欄目:web開發

這篇文章主要講解了“css背景色透明但內容不透明的解決方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“css背景色透明但內容不透明的解決方法”吧!


代碼如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Css:背景色透明,內容不透明之終極方法!兼容所有瀏覽器</title>
<style type="text/css">
*{margin:0;padding:0;}
body{background:#3f3f3f;font-family:"宋體", Arial;}
h2, h3, h4, h5, h6, h7{font-weight:normal;font-size:100%;}
img{border:none 0;}
#bos{width:820px;background:#fff;margin:0 auto;}
#bos ul{zoom:1;overflow:hidden;background:#fff;padding:5px 0 5px 5px;}
#bos ul li{width:260px;position:relative;overflow:hidden;float:left;margin:5px;background:#fff;}
.img_wrap{width:258px;border:1px solid #ccc;border-radius:15px;display:block;overflow:hidden;}
#bos ul li h3{width:100%;height:0px;line-height:50px;color:#fff;text-indent:1em;font-size:14px;font-family:微軟雅黑;position:absolute;bottom:0px;border-bottom-left-radius:15px;border-bottom-right-radius:15px;filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#44000000',endColorstr='#44000000');background:rgba(0,0,0,.6);}
</style>
</head>
<body>
<div id="bos">
<ul>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="https://cache.yisu.com/upload/information/20210311/295/14971.jpg">http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg</a>" alt="" /></a>
<h3>網站防詐騙重要提示 購物滿59元免運費</h3>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="https://cache.yisu.com/upload/information/20210311/295/14972.jpg">http://i1.vanclimg.com/users/18/20120824/r1_120824.jpg</a>" alt="" /></a>
<h3>Android客戶端升級新體驗 配送延誤通知</h3>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="https://cache.yisu.com/upload/information/20210311/295/14973.jpg">http://i1.vanclimg.com/users/18/20120824/f8_120824.jpg</a>" alt="" /></a>
<h3>陳年談品牌的本分 工行e支付可直減60元</h3>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="https://cache.yisu.com/upload/information/20210311/295/14971.jpg">http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg</a>" alt="" /></a>
<h3>陳年談品牌的本分 工行e支付可直減60元</h3>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="https://cache.yisu.com/upload/information/20210311/295/14973.jpg">http://i1.vanclimg.com/users/18/20120824/f8_120824.jpg</a>" alt="" /></a>
<h3>陳年談品牌的本分 工行e支付可直減60元</h3>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="https://cache.yisu.com/upload/information/20210311/295/14971.jpg">http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg</a>" alt="" /></a>
<h3>陳年談品牌的本分 工行e支付可直減60元</h3>
</li>
</ul>
</div>
 <script type="text/javascript">
    var bos = document.getElementById('bos');
    var lis = bos.getElementsByTagName('li');
    var len = lis.length;
    while (len--) {
        lis[len].onmouseover = function () {
            over(this.getElementsByTagName('h3')[0]);
        }
        lis[len].onmouseout = function () {
            out(this.getElementsByTagName('h3')[0]);
        }
    }
    function over(obj) {
        var ypos = 0;
        if (obj.time) {
            clearInterval(obj.time)
        }
        obj.time = setInterval(function () {
            if (ypos < 50) {
                ypos += Math.ceil((50 - ypos) / 3);
            }
            obj.style.height = ypos + "px";
        }, 25);
    }
    function out(obj) {
        var ypos = 50;
        if (obj.time) {
            clearInterval(obj.time)
        }
        obj.time = setInterval(function () {
            if (ypos >= 0) {
                ypos -= Math.ceil((ypos - 0) / 3);
            }
            obj.style.height = ypos + "px";
        }, 25);
    }
</script></body>
</html>

感謝各位的閱讀,以上就是“css背景色透明但內容不透明的解決方法”的內容了,經過本文的學習后,相信大家對css背景色透明但內容不透明的解決方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

会理县| 正阳县| 马龙县| 文登市| 平安县| 临西县| 五原县| 遂川县| 江口县| 平乐县| 常德市| 休宁县| 安新县| 邛崃市| 临安市| 唐山市| 垫江县| 芮城县| 龙陵县| 宝清县| 佛教| 金门县| 涿州市| 荆州市| 永年县| 宁都县| 宾川县| 漾濞| 额尔古纳市| 拉萨市| 福海县| 绍兴市| 东山县| 三亚市| 卓尼县| 金塔县| 张北县| 务川| 会理县| 廉江市| 郯城县|