为什么按钮不让立方体旋转?
我正在添加 +=45deg 到它!这是代码:jQuery:
$(document).ready(function(){
$('button').click(function(){
$('#cube').css('-webkit-transform','rotateY(+=45deg)');
});
});
html:
<button>rotate</button>
<div id="cube">
</div>
CSS:
#cube {
display: block;
width: 250px;
height: 250px;
background: #66F;
}
jsfiddle:http: //jsfiddle.net/ysLet/