答案 0 :(得分:4)
旋转后,将其宽度和高度设置为页面的宽度和高度。
$('#who').rotate({
angle:-90,
bind: [{
click: function(){
$(this).rotateAnimation(0);
}
}], // remove the trailing comma here
callback: function (){
var $window = $(window);
$(this).height($window.height()).width($window.width());
}
});
$('#who').rotate({
angle: -90,
bind: [{
click: function(){
$(this).rotateAnimation(0);
}
}],
callback: function (){
$(this).width(800).height(600);
}
});
使用当前的CSS,您需要缩放img
。
$('#who').rotate({
angle: -90,
bind: [{
click: function(){
$(this).rotateAnimation(0);
}
}],
callback: function (){
$('#who > img').animate({height: 600, width: 800});
}
});
如果您将图片的height
和width
更改为100%
,那么您只需更改div
的尺寸,图片就会缩小它
$('#who').animate({height: 600, width: 800});