gpt4 book ai didi

jquery - 使用 jQuery 从中间缩放图像

转载 作者:行者123 更新时间:2023-11-28 16:55:39 24 4
gpt4 key购买 nike

是否可以使用 jQuery 从中间开始缩放图像?现在它从左上角开始。

$( document ).ready(function() {
$("#logo").animate({
height: '+=100%',
width: '+=100%'
});

});
#logoblock
{
position: relative;
width: 700px;
height: 700px;
margin: auto;
}
#logo
{
position: absolute;
width: 0%;
height: 0%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<div id="logoblock">
<div id="logo">
<img src="http://placehold.it/700x700">
</div>
</div>

这可能吗?

最佳答案

可能b完全不是你想要的

$( document ).ready(function() {
$("#logo").animate({
height: '+=100%',
width: '+=100%',
top: 0,
left:0
});

});

CSS

#logoblock
{
position: relative;
width: 700px;
height: 700px;
margin: auto;
}
#logo
{
position: absolute;
top:50%;
left:50%;
width: 0%;
height: 0%;
}

fiddle http://jsfiddle.net/73h17m1t/

fiddle 加载后单击run 按钮并将结果帧调整为完整大小以获得最佳 View 。

关于jquery - 使用 jQuery 从中间缩放图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32199590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com