端くれプログラマの備忘録 CSS [CSS] 基本メモ: 幾何変換 回転

[CSS] 基本メモ: 幾何変換 回転

サンプル

<style>
p {
    background-color: lightsalmon;
    padding: 20px;
}
</style>
<style>
p.test1 img { transform: rotate(0deg); }
</style>
<p class="test1">
<img src="sample.jpg">
</p>

transform-rotate-1

<style>
p.test2 img { transform: rotate(30deg); }
</style>
<p class="test2">
<img src="sample.jpg">
</p>

transform-rotate-2

<style>
p.test3 img { transform: rotate(-15deg); }
</style>
<p class="test3">
<img src="sample.jpg">
</p>

transform-rotate-3

<style>
p.test4 img { 
 transform-origin: 0 0;
 transform: rotate(-15deg);
}
</style>
<p class="test4">
<img src="sample.jpg">
</p>

transform-rotate-4

参考サイト

transform:rotate()-CSS3リファレンス
http://www.htmq.com/css3/transform_rotate.shtml