CSS 变换倾斜
有谁知道如何实现这样的倾斜:
使用 CSS 的新转换属性?
正如你所看到的,我正在尝试倾斜两个角,有人知道这是否可能吗?
Does anyone know how to achieve skew like this:
Using CSS's new transform property?
As you can see I'm trying to skew both corners, anyone know if this is possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
然后 HTML:
来自 http://desandro.github.com/3dtransforms/docs/perspective.html
Then HTML:
from http://desandro.github.com/3dtransforms/docs/perspective.html
CSS:
HTML:
适用于 Chrome 和 FF 4:http://jsfiddle.net/rudiedirkx/349x9/
这可能会有所帮助: http://jsfiddle.net/rudiedirkx/349x9/2880/
这也是(来自 Erwinus 的评论): http://css-tricks.com/examples/ ShapesOfCSS/
CSS:
HTML:
Works in Chrome and FF 4: http://jsfiddle.net/rudiedirkx/349x9/
This might help: http://jsfiddle.net/rudiedirkx/349x9/2880/
And this too (from Erwinus' comment): http://css-tricks.com/examples/ShapesOfCSS/
我认为你的意思是 webkit 转换..请查看此 URL
http://www.the-art-of-web.com/ css/3d-transforms/ 它可以帮助你。
I think you mean webkit transform.. please check this URL out
http://www.the-art-of-web.com/css/3d-transforms/ it could help you.
您可以一起使用 -webkit-perspective 和 -webkit-transform。
这仅适用于 Safari。
You can use -webkit-perspective and -webkit-transform together.
This works only in Safari.
使用这个CSS代码。根据需要设置数字
Use this css code. Set the numbers according to your need
如果您愿意,请使用 3d 矩阵。
http://codepen.io/Logo/pen/jEMVpo
Just in case you want, use matrix 3d.
http://codepen.io/Logo/pen/jEMVpo
这对我有用。
This worked for me.
另外 2 种方法:
如 https://css-tricks.com/examples/ 所示ShapesOfCSS/#trapezoid 你可以使用
边框
:<前><代码>#box {
左边框:200px 纯黑;
顶部边框:50px 实心透明;
border-bottom: 50px 实心透明;
宽度:0;
高度:100px;
}
但它不能有内容,因为它都是边框。
示例:http://jsfiddle.net/rudiedirkx/349x9/3112/< /p>
使用CSS 的实际“倾斜”变换:
<前><代码>#box {
宽度:200px;
高度:170 像素;
顶部边距:30px;
背景颜色:黑色;
变换:skewY(10deg);
位置:相对;
z 索引:1; /* 不起作用? */
}
#框:之前{
内容: ””;
显示:块;
宽度:200px;
高度:80像素;
位置:绝对;
底部:-40px;
左:0;
背景颜色:黑色;
变换:skewY(-20deg);
z 索引:-1; /* 不起作用? */
}
不过,我似乎无法将伪元素定位在主元素后面,因此伪元素实际上落在主元素的内容(如果有)上。
示例:http://jsfiddle.net/rudiedirkx/349x9/3113/< /p>
2 more methods:
As seen on https://css-tricks.com/examples/ShapesOfCSS/#trapezoid you can use
border
:but it can't have contents, because it's all border.
Example: http://jsfiddle.net/rudiedirkx/349x9/3112/
Use CSS' actual 'skew' transform:
I can't seem to position the pseudo element behind the main element though, so the pseudo actually falls over the main element's content, if any.
Example: http://jsfiddle.net/rudiedirkx/349x9/3113/