js旋转DIV内容
js旋转DIV内容
<script>
var i = 0;
function rot()
{
i = ++i % 4;
if (!document.all.aDiv.style.filter)
document.all.aDiv.style.filter = 'progid:DXImageTransform.Microsoft.BasicImage(rotation=' + i + ')';
else
document.all.aDiv.filters.item('DXImageTransform.Microsoft.BasicImage').Rotation = i;
}
</script>
</head>
<body>
<input type="button" value="Rotate by 90 deg" onclick="rot();" />
<div id="aDiv" style="width: 100px; height: 100px; background-color:
lime;"><img src="img/leftimg.png">
</div>
关键词: js旋转div,javascript 编辑时间: 2010-03-12 10:15:54
1
高兴0
支持1
搞笑1
不解0
谎言1
枪稿0
震惊0
无奈0
无聊0
反对1
愤怒
- 暂无评论
网友评论