使用css樣式實(shí)現(xiàn)動(dòng)態(tài)圖片裁剪示例

字號(hào):


    使用樣式實(shí)現(xiàn)動(dòng)態(tài)圖片裁剪
    代碼如下:
    <!doctype html public -//w3c//dtd xhtml 1.0 transitional//en
    <a href=http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd>http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd</a>></p> <p><html xmlns=<a href=http://www.w3.org/1999/xhtml>http://www.w3.org/1999/xhtml</a> xml:lang=en lang=en>
    <head>
    <meta http-equiv=content-type content=text/html; charset=utf-8/></p> <p> <title>untitled</title></p> <p> <style type=text/css media=screen>
    div.crop {
    height: 300px;
    width: 350px;
    overflow: hidden;
    }
    div.crop img {
    margin: -300px -200px 0 0;
    }
    </style></p> <p></head></p> <p><body></p> <p><div class=crop>
    <img src=paper-sculpture-large.jpg class=crop alt=paper sculpture large>
    </div></p> <p></body>
    </html>