【发布时间】:2015-02-25 21:54:03
【问题描述】:
我想创建这个: 最好使用 SVG、Canvas 或 CSS3。
最终,我打算在这些区域上应用 4 种单独的多重混合模式。
我还想拉伸这个区域以占据网页的整个高度/宽度。
我可以在一定程度上做到这一点here,但这不适合我。这使用:
box-sizing:border-box;
-mox-box-sizing:border-box;
border-top:rgba(25,25,255,0.8) solid 50vh; /* Nothing below IE8 or Firefox 19 */
border-bottom:rgba(25,25,255,0.8) solid 50vh; /* Nothing below IE8 or Firefox 19 */
border-left: rgba(0,0,255,0.5) solid 50vw;;
border-right: rgba(0,0,255,0.5) solid 50vw;;
-moz-background-clip: content; /* Firefox 3.6 */
-webkit-background-clip: content; /* Safari 4? Chrome 6? */
background-clip: content-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
有人可以帮忙实现图形中的形状吗?
【问题讨论】:
标签: html css svg css-shapes