transform

英[trænsˈfɔ:m] 美[trænsˈfɔ:rm]

vt.Change; change

vi.Change

n.[Number]Transformation

style

anglais [ staɪl] Beauté [staɪl]

n. Style; mode; instrument, goût

vt. Titre; forme pour...

vi.

propriété de style transformation CSS syntaxe

Fonction : L'attribut transform-style spécifie comment restituer les éléments imbriqués dans l'espace 3D.

Syntaxe : transform-style: flat|preserve-3d

Description : les éléments enfants plats ne conserveront pas leur position 3D. préserver-3d Les éléments enfants conserveront leur position 3D.​

Remarque : Cet attribut doit être utilisé avec l'attribut transform.

propriété de style transformation CSS exemple

<!DOCTYPE html>
<html>
<head>
<style>
#div1
{
position: relative;
height: 200px;
width: 200px;
margin: 100px;
padding:10px;
border: 1px solid black;
}
#div2
{
padding:50px;
position: absolute;
border: 1px solid black;
background-color: red;
transform: rotateY(60deg);
transform-style: preserve-3d;
-webkit-transform: rotateY(60deg); /* Safari and Chrome */
-webkit-transform-style: preserve-3d; /* Safari and Chrome */
}
#div3
{
padding:40px;
position: absolute;
border: 1px solid black;
background-color: yellow;
transform: rotateY(80deg);
-webkit-transform: rotateY(-60deg); /* Safari and Chrome */
}
</style>
</head>
<body>
<div id="div1">
  <div id="div2">HELLO
  	<div id="div3">YELLOW</div>
  </div>
</div>
</body>
</html>

Exécuter l'instance »

Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne