Joh*_*nes 4 css background-color css-transforms
我想在 CSS 中实现这一点,对所有屏幕尺寸都有效:

从我的屏幕左侧到中间,背景应该是蓝色,从中间上到右下角,背景应该是白色。这是我已经得到的:
<style>
.wrapper {
position: fixed;
z-index: 1;
width: 100%;
height: 100%;
background: #297fca;
}
.right {
position: fixed;
z-index: 2;
top: -70%;
right: -50%;
background: #fff;
width: 100%;
height: 100%;
transform: translateY(50%) rotate(45deg);
}
</style>
...
<div class="wrapper">
<div class="right">
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
这适用于某些屏幕尺寸,但不是通用解决方案。我正在寻找仅使用 CSS 的解决方案。如果这是不可能的,SVG apporach 也可以。
提前致谢。
您可以使用线性渐变轻松做到这一点。您需要其中的两个,一个将创建一个正方形来填充前 50%,第二个将创建三角形来填充剩余的 50%。
body {
margin:0;
height:100vh;
background-image:
linear-gradient(#297fca,#297fca),
linear-gradient(to bottom left,transparent 49.8%,#297fca 50%);
background-repeat:no-repeat;
background-size:50.1% 100%; /* both gradient will fill 50% width and 100% height*/
background-position:
left, /* The first one placed on the left*/
right /* The second one placed on the right*/
}Run Code Online (Sandbox Code Playgroud)
如果你不想要透明度,你可以像下面这样做:
body {
margin:0;
height:100vh;
background:
linear-gradient(to top right,transparent 49.8%,#fff 50%)
right -1px top 0
/50% 100%
no-repeat,
#297fca;
}Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1309 次 |
| 最近记录: |