css背景色透明 内容不透明的解决方法(兼容所有浏览器)

所属分类: 网页制作 / CSS 阅读数: 1284
收藏 0 赞 0 分享

复制代码
代码如下:

<!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;}
h1, h2, h3, h4, h5, h6{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 h2{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="http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg">http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg</a>" alt="" /></a>
<h2>网站防诈骗重要提示 购物满59元免运费</h2>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="http://i1.vanclimg.com/users/18/20120824/r1_120824.jpg">http://i1.vanclimg.com/users/18/20120824/r1_120824.jpg</a>" alt="" /></a>
<h2>Android客户端升级新体验 配送延误通知</h2>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="http://i1.vanclimg.com/users/18/20120824/f8_120824.jpg">http://i1.vanclimg.com/users/18/20120824/f8_120824.jpg</a>" alt="" /></a>
<h2>陈年谈品牌的本分 工行e支付可直减60元</h2>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg">http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg</a>" alt="" /></a>
<h2>陈年谈品牌的本分 工行e支付可直减60元</h2>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="http://i1.vanclimg.com/users/18/20120824/f8_120824.jpg">http://i1.vanclimg.com/users/18/20120824/f8_120824.jpg</a>" alt="" /></a>
<h2>陈年谈品牌的本分 工行e支付可直减60元</h2>
</li>
<li>
<a class="img_wrap" href="#"><img _fcksavedurl=""#"><img" src="<a href="http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg">http://i2.vanclimg.com/users/18/20120824/n1_120824.jpg</a>" alt="" /></a>
<h2>陈年谈品牌的本分 工行e支付可直减60元</h2>
</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('h2')[0]);
}
lis[len].onmouseout = function () {
out(this.getElementsByTagName('h2')[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>
更多精彩内容其他人还在看

CSS3实现背景透明文字不透明的示例代码

这篇文章主要介绍了CSS3实现背景透明文字不透明的示例代码的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

浅谈CSS中的尺寸单位

这篇文章主要介绍了浅谈CSS中的尺寸单位的相关资料,浏览器的兼容性越来越好,移动端基本是清一色的webkit,经常会用到css的不同尺寸/长度单位,这里做个整理。感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

CSS中有些属性的前面会加上“*”或“_”所代表的意思

这篇文章主要介绍了CSS中有些属性的前面会加上“*”或“_”所代表的意思,需要的朋友可以参考下
收藏 0 赞 0 分享

CSS 设置滚动条样式的实例代码

这篇文章主要介绍了CSS 设置滚动条样式的实例代码,非常不错,具有一定的参考借鉴价值,需要的朋友参考下吧
收藏 0 赞 0 分享

纯CSS制作各种各样的网页图标(三角形、暂停按钮、下载箭头、加号等)

这篇文章主要介绍了纯CSS制作各种各样的网页图标(三角形、暂停按钮、下载箭头、加号等)的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

纯css实现多级折叠菜单折叠树效果

这篇文章主要介绍了纯css实现多级折叠菜单折叠树效果,运用checkbox的checked值来判断下级栏目是否展开,通过css3选择器提供的checked伪类来实现此效果,感兴趣的朋友参考下吧
收藏 0 赞 0 分享

CSS Grid 网格布局全解析

这篇文章主要介绍了CSS Grid 网格布局全解析的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

css flex 弹性布局详解

这篇文章主要介绍了css flex 弹性布局详解的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

CSS3 二级导航菜单的制作的示例

这篇文章主要介绍了CSS3 二级导航的制作的示例的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

使用css禁用input、checkbox、select等html控件实现disable效果

这篇文章主要介绍了使用css禁用input、checkbox、select等html控件实现disable效果,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多