html底色透明颜色代码,css背景色透明 内容不透明的解决方法(兼容所有浏览器)...

复制代码代码如下:

/p>

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

http://www.w3.org/1999/xhtml">

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);}

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);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值