图像叠加上的图像(alt代码)

时间:2012-09-08 13:29:25

标签: image overlay alt

我遇到了问题...我已经生成了Youtube缩略图,我想添加一个"播放按钮"使用alt代码,与此代码相同:►

但是,无论我做什么,这个按钮都不会出现。

PS:问题在于它是一个脚本,我似乎无法在缩略图上添加此按钮。我为图像做了一个课程,按钮必须在该课程上进行,但即便如此,按钮也没有显示出来。不透明度和那种事情已经完成,我唯一想要的就是这个按钮,但如前所述,它不会起作用。

img.className ='但是' (这是我在剧本中制作的课程)。脚本就是这个 - >

http://www.yvoschaap.com/ytpage/ytembed.js

2 个答案:

答案 0 :(得分:0)

仅在图像不可用时才会显示替代代码图像。 它不会覆盖图像。

答案 1 :(得分:0)

你可以使用css和div来实现这个

#OverlayImage1
{
position: absolute;
left: 20px;
top: 20px;
width: 56px;
height: 45px;
background: url(underimage.jpg) no-repeat top left;
opacity: .80;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
}

#OverlayImage2
{
position: absolute;
left: 40px;
top: 20px;
width: 56px;
height: 45px;
background: url(play.image) no-repeat top left;
opacity: .80;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
}

你也可以修改left:,top:,width:和height:根据你的图片 希望这能解决您的问题