我想创建一些这样的形状:
这些是 3 个形状。然后我想在这个形状上放一些元素。我尝试使用border-radius 属性,但它无法生成此形状。我也尝试使用<img>
,但我在上面放置元素时遇到问题。你对此有什么想法?<map>
<area>
我想创建一些这样的形状:
这些是 3 个形状。然后我想在这个形状上放一些元素。我尝试使用border-radius 属性,但它无法生成此形状。我也尝试使用<img>
,但我在上面放置元素时遇到问题。你对此有什么想法?<map>
<area>
你只需要有创意:
HTML:
<div id="circle">
<div id="cover"></div>
<div id="innerCircle">
<div id="rect1"></div>
<div id="rect2"></div>
</div>
</div>
CSS:
#circle {
width: 140px;
height: 140px;
background: red;
-moz-border-radius: 70px;
-webkit-border-radius: 70px;
border-radius: 70px;
margin: 0 auto;
position: relative;
top: -50px;
}
#innerCircle {
width: 90px;
height: 90px;
background: white;
-moz-border-radius: 70px;
-webkit-border-radius: 70px;
border-radius: 70px;
position: absolute;
top: 25px;
right: 25px;
}
#rect1 {
width: 20px;
height: 90px;
background: white;
transform: rotate(30deg);
-ms-transform: rotate(30deg); /* IE 9 */
-webkit-transform: rotate(30deg); /* Safari and Chrome */
position: absolute;
top: 50%;
left: 5px;
}
#rect2 {
width: 20px;
height: 90px;
background: white;
transform: rotate(-30deg);
-ms-transform: rotate(-30deg); /* IE 9 */
-webkit-transform: rotate(-30deg); /* Safari and Chrome */
position: absolute;
top: 50%;
right: 5px;
}
#cover {
width: 150px;
height: 80px;
background: white;
position: absolute;
top: 0px;
left: 0px;
}
或者你可以做这样的事情,弯曲侧面并使用 CSS3 旋转功能来获得三个形状:
您可能必须使用 HTML5 画布来实现您要求的确切复杂形状:
http://www.html5canvastutorials.com/tutorials/html5-canvas-custom-shapes/