xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3 translate() 方法示例 - div.cn 基础教程</title>
<style>
img {
-webkit-transform: translate(200px, 50px); /* Chrome, Safari, Opera */
-moz-transform: translate(200px, 50px); /* Firefox */
-ms-transform: translate(200px, 50px); /* IE 9 */
transform: translate(200px, 50px); /* Standard syntax */
}
.box{
margin: 50px;
width:153px;
height:103px;
background: url("/run/images/tortoise-transparent.png") no-repeat;
}
</style>
</head>
<body>
<div class="box">
<img src="/run/images/tortoise.png" alt="Tortoise">
</div>
</body>
</html>