你能告诉我如何在jQuery中缩放div内容吗?我能够缩放,但问题是变焦是高度而不是宽度。请检查我的jsfiddle
$('#zoomin').click(
function() {
alert("--")
$("#divelement").animate({ 'zoom': 1.2 }, 400);
});
$('#zoomout').click(
function() {
alert("-zoomout-")
$("#divelement").animate({ 'zoom': 1 }, 400);
});
答案 0 :(得分:1)
答案 1 :(得分:0)
您将宽度设置为百分比值。您必须将其更改为px或cm。
使用
.divClass{
width: 100px; /* Fixed value */
height:100px;
border:1px solid red
}