サンプル
1 2 3 4 5 6 |
<style> p { background-color: lightsalmon; padding: 20px; } </style> |
1 2 3 4 5 6 |
<style> p.test1 img { transform: translate(0px,0px); } </style> <p class="test1"> <img src="sample.jpg"> </p> |
1 2 3 4 5 6 |
<style> p.test2 img { transform: translatex(50px); } </style> <p class="test2"> <img src="sample.jpg"> </p> |
1 2 3 4 5 6 |
<style> p.test3 img { transform: translatey(-5px); } </style> <p class="test3"> <img src="sample.jpg"> </p> |
参考サイト
transform:translate()-CSS3リファレンス
http://www.htmq.com/css3/transform_translate.shtml