Est-ce que quelqu'un sait comment obtenir un biais comme ceci:
Vous utilisez la nouvelle propriété de transformation CSS?
Comme vous pouvez le voir, j'essaie de fausser les deux angles, tout le monde sait si cela est possible?
CSS:
#box {
width: 200px;
height: 200px;
background: black;
position: relative;
-webkit-transition: all 300ms ease-in;
}
#box:hover {
-webkit-transform: rotate(-180deg) scale(0.8);
}
#box:after, #box:before {
display: block;
content: "\0020";
color: transparent;
width: 211px;
height: 45px;
background: white;
position: absolute;
left: 1px;
bottom: -20px;
-webkit-transform: rotate(-12deg);
-moz-transform: rotate(-12deg);
}
#box:before {
bottom: auto;
top: -20px;
-webkit-transform: rotate(12deg);
-moz-transform: rotate(12deg);
}
HTML:
<div id=box></div>
Fonctionne sous Chrome et FF 4: http://jsfiddle.net/rudiedirkx/349x9/
Cela pourrait aider: http://jsfiddle.net/rudiedirkx/349x9/2880/
Et cela aussi (du commentaire d'Erwinus): http://css-tricks.com/examples/ShapesOfCSS/
.red.box {
background-color: red;
transform: perspective( 600px ) rotateY( 45deg );
}
Puis HTML:
<div class="box red"></div>
de http://desandro.github.com/3dtransforms/docs/perspective.html
Je pense que vous voulez dire transformation de webkit .. veuillez vérifier cette URL http://www.the-art-of-web.com/css/3d-transforms/ cela pourrait vous aider.
Vous pouvez utiliser -webkit-perspective et -webkit-transform ensemble.
<div style="-webkit-perspective:300;">
<div style="-webkit-transform:rotate3d(0, 1, 0, 30deg);width:200px;height:200px;background:#D73913;"></div>
</div>
Cela ne fonctionne que dans Safari.
Utilisez ce code CSS. Définissez les chiffres en fonction de vos besoins
-webkit-transform: translateX(16em) perspective(600px) rotateY(10deg);
-moz-transform: translateX(16em) perspective(600px) rotateY(10deg);
-ms-transform: translateX(16em) perspective(600px) rotateY(10deg);
-o-transform: translateX(16em) perspective(600px) rotateY(10deg);
transform: translateX(16em) perspective(600px) rotateY(10deg);
Juste au cas où vous voudriez, utilisez la matrice 3D.
transform:matrix3d(
1,0,1,0.003,
0,1,0,0,
0,0,1,0,
0,0,0,1);
2 autres méthodes:
Comme vu sur https://css-tricks.com/examples/ShapesOfCSS/#trapezoid vous pouvez utiliser border
:
#box {
border-left: 200px solid black;
border-top: 50px solid transparent;
border-bottom: 50px solid transparent;
width: 0;
height: 100px;
}
mais il ne peut pas y avoir de contenu, car tout est frontière.
Utilisez la transformation 'skew' actuelle de CSS:
#box {
width: 200px;
height: 170px;
margin-top: 30px;
background-color: black;
transform: skewY(10deg);
position: relative;
z-index: 1; /* doesn't work? */
}
#box:before {
content: "";
display: block;
width: 200px;
height: 80px;
position: absolute;
bottom: -40px;
left: 0;
background-color: black;
transform: skewY(-20deg);
z-index: -1; /* doesn't work? */
}
Je n'arrive pas à positionner le pseudo-élément derrière l'élément principal, donc le pseudo se trouve sur le contenu de l'élément principal, le cas échéant.
.size{
width: 200px;
height: 200px;
}
.boxContainer{
-webkit-perspective:100;
}
.box{
background: blue;
-webkit-transform-Origin-x:0;
-webkit-transform: rotateY(10deg);
}
<div class="size boxContainer">
<div class="size box">
</div>
</div>
Cela a fonctionné pour moi.