Home > Web Front-end > HTML Tutorial > 利用css切割图片代码实例_html/css_WEB-ITnose

利用css切割图片代码实例_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:30:13
Original
1195 people have browsed it

利用css切割图片代码实例:
本章节介绍一下如何对图片进行切割,css3提供了clip属性,能够实现将图片切割成举行效果,关于clip属性的具体用法这里就不多介绍了,具体可以参阅CSS3的clip属性用法详解一章节,下面分享一段简单的代码实例,希望能够给需要的朋友带来参考作用。
代码如下:

 

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">img{   position:absolute;   clip:rect(20px 100px 50px 20px); } </style></head><body><img  src="mytest/demo/clip.jpg"/ alt="利用css切割图片代码实例_html/css_WEB-ITnose" ></body></html>
Copy after login

 

以上代码实现了我们的要求,实现了对图片的切割效果。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=13067

更多内容可以参阅:http://www.softwhy.com/divcss/

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template