例子:
<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" border="0" />
<map name="planetmap" id="planetmap">
<area shape="circle" coords="180,139,14" href ="venus.html" style="cursor: pointer" alt="Venus" />
<area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" />
<area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" />
</map>
关于例子的解释:
area 元素永远嵌套在 map 元素内部。area 元素可定义图像映射中的区域。
<img>中的 usemap 属性可引用 <map>中的 id 或 name 属性(取决于浏览器),所以应同时向 <map>添加 id 和 name 属性。
x1,y1,x2,y2
如果 shape 属性设置为 "rect",则该值规定矩形左上角和右下角的坐标。
x,y,radius
如果 shape 属性设置为 "circ",则该值规定圆心的坐标和半径。
x1,y1,x2,y2,..,xn,yn
如果 shape 属性设置为 "poly",则该值规定多边形各边的坐标。如果第一个坐标和最后一个坐标不一致,那么为了关闭多边形,浏览器必须添加最后一对坐标。
第一种:插入图片链接
<!DOCTYPE html><html>
<head>
<meta charset="UTF-8" />
<title>HTML5学堂</title>
</head>
<body>
<!-- img标签的src属性设置图片的链接 -->
<img src="../h5course-com.png" alt="HTML语言插入图片链接" />
</body>
</html>
第二种:插入图片超链接
<!DOCTYPE html><html>
<head>
<meta charset="UTF-8" />
<title>HTML5学堂</title>
</head>
<body>
<!-- img标签的src属性设置图片的链接 -->
<a href="http://h5course.com/">
<img src="https://img.h5course.cn/logo.png" alt="HTML语言插入图片链接" />
</a>
</body>
</html>
html将文字做成超链接,文字在图片img内;如下
1、打开编辑软件,需要一张图片做背景图像;
<style>.imgbj{ background:url(111111.png) no-repeat width:500px height:300px text-align:center}
.imgbj a{ color:#FFF}
</style>
<div class="imgbj">
<a href="http://www.baidu.com/">需要插入的文字链接</a>
</div>
给css样式取一个名字:imgbj,引用一张背景图片,设置一下宽度与高度,text-aling:center文字居中显示;
2、网页中显示效果:
点击文字即可链接到<a href="超链接地址">链接地址</a>即可;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)