完美实现文字置于图片之上且背景半透明教程

  • A+
所属分类:编程茶楼

之前发过一篇关于 将图片的说明文字显示在图片之上且背景半透明效果 的文章,讲述了如何将文字置于图片之上且背景半透明,但那个解决办法会出现一个问题,就是背景虽然半透明了,但文字也会半透明,今天发现百度旅游上的实现方法,很完美地实现这个功能,现把代码共享如下:

复制代码

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>文字置于图片之上且背景半透明 标准之路www.aa25.cn</title>
<style>
a.title { color:#D3D3D4; background-color:rgba(0,0,0,0.6);
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#A0000000', EndColorStr='#A0000000');
padding: 12px 24px;
position: absolute;
top: 228px;
left:0;
width: auto;
text-decoration: none;
font: 16px Microsoft YaHei, Verdana;
color:#fff;
</style>
</head>
<body>
<div style=" position:relative; width:1280px;">
<img src="/upload/2012-04/27/081923_6a63f6246b600c33fcca25821a4c510fd8f9a1cd.jpg" alt="完美实现文字置于图片之上且背景半透明教程" width="1280" height="960" />
<a class="title" href="#">探秘古代帝王生活</a>
</div>
</body>
</html>