美文网首页
HTML 图像实例

HTML 图像实例

作者: WILD_POINTER | 来源:发表于2017-04-11 18:05 被阅读0次

    1、背景图片

    <html>
    <body background="图片">
    
    <h3>图像背景</h3>
    <p>gif 和 jpg 文件均可用作 HTML 背景。</p>
    <p>如果图像小于页面,图像会进行重复。</p>
    
    </body>
    </html>
    

    2、排列图片-与文本的对齐方式

    <html>
    <body>
    
    <h2>未设置对齐方式的图像:</h2>
    <p>图像 <img src ="图片"> 在文本中</p>
    
    <h2>已设置对齐方式的图像:</h2>
    <p>图像 ![](图片) 在文本中</p>
    <p>图像 ![](图片) 在文本中</p>
    <p>图像 ![](图片) 在文本中</p>
    
    <p>请注意,bottom 对齐方式是默认的对齐方式。</p>
    
    </body>
    </html>
    

    3、调整图像尺寸

    <img src="" width="50" height="50">
    <p>通过改变 img 标签的 "height" 和 "width" 属性的值,您可以放大或缩小图像。</p>
    

    4、为图片显示替换文本

    <p>如果无法显示图像,将显示 "alt" 属性中的文本:</p>
    <img src="" alt="向左转" />
    

    5、制作图像链接

    <a href="/example/html/lastpage.html">
    <img border="0" src="" />
    </a>
    

    6、创建图像映射

    #本例显示如何创建带有可供点击区域的图像地图。
    <html>
    <body>
    
    <p>请点击图像上的星球,把它们放大。</p>
    
    <img
    src=""
    border="0" usemap="#planetmap"
    alt="Planets" />
    
    <map name="planetmap" id="planetmap">
    
    <area
    shape="circle"
    coords="180,139,14"
    href ="/example/html/venus.html"
    target ="_blank"
    alt="Venus" />
    
    <area
    shape="circle"
    coords="129,161,10"
    href ="/example/html/mercur.html"
    target ="_blank"
    alt="Mercury" />
    
    <area
    shape="rect"
    coords="0,0,110,260"
    href ="/example/html/sun.html"
    target ="_blank"
    alt="Sun" />
    
    </map>
    
    <p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>
    
    </body>
    </html>
    

    7、把图像转换为图像映射

    <a href="/example/html/html_ismap.html">
    <img src="" ismap />
    </a>
    

    相关文章

      网友评论

          本文标题:HTML 图像实例

          本文链接:https://www.haomeiwen.com/subject/nduuattx.html