html – 使用CSS自定义圆形图像

前端之家收集整理的这篇文章主要介绍了html – 使用CSS自定义圆形图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想获得一个自定义形状的图像,如下所示:

#oval-shape {
  width: 200px;
  height: 100px;
  background: blue;
  -moz-border-radius: 100px / 50px;
  -webkit-border-radius: 100px / 50px;
  border-radius: 100px / 50px;
}
<img id="oval-shape" src="http://d152j5tfobgaot.cloudfront.net/wp-content/uploads/2014/04/internship_yourstory.jpg">

DEMO

有什么想法,如果这是可能的?

解决方法

有一种方法可以用边框“伪造”这个形状:
body {
  background: purple;
}
#oval-shape {
  display:block;
  margin: 20px auto;
  width: 200px;
  height: 200px;
  background: none;
  border-radius: 100%;
  Box-sizing: border-Box;
  border-bottom: 50px solid transparent;
}
<img src="http://d152j5tfobgaot.cloudfront.net/wp-content/uploads/2014/04/internship_yourstory.jpg" id="oval-shape">
原文链接:https://www.f2er.com/html/226309.html

猜你在找的HTML相关文章