如何用jQuery实现调整大小动画?

发布于 2024-08-03 05:04:23 字数 60 浏览 3 评论 0原文

当调整容器大小时,里面的所有内容(文本)也应该相应缩放。

有没有一个插件可以实现这个功能?

When the container is resized,everything inside(text) should also scale accordingly.

Is there a plugin that can achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我很OK 2024-08-10 05:04:23

html:

<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.7.2.custom.js"></script>
<link rel="stylesheet" type="text/css" href="ui.all.css"/>

<div id="container" class="ui-widget-content"
  style="font-size:10px;width:100px;height:100px;padding:0.5em;">         
    <div class="ui-widget-header">Resize This</div>
    this is some text. this is some text. this is some text. this is some 
    text. this is some text. this is some text. this is some text. this is 
    some text. this is some text. this is some text. this is some text.
</div>

jquery:

    var oh=0; //original height of container
    var ow=0; //original width of container
    var fs=10;//original font size

    $(document).ready(function(){
        oh=$("#container").height();
        ow=$("#container").width();

        $("div#container").resizable({
            stop: function(element,ui){
              var h=ui.size.height;
              if(oh==0) return;
              var nfs = (h/oh) *fs;
              $("#container").css({'font-size':nfs+"px"});
           },
           ghost: true
         });
    });

html:

<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.7.2.custom.js"></script>
<link rel="stylesheet" type="text/css" href="ui.all.css"/>

<div id="container" class="ui-widget-content"
  style="font-size:10px;width:100px;height:100px;padding:0.5em;">         
    <div class="ui-widget-header">Resize This</div>
    this is some text. this is some text. this is some text. this is some 
    text. this is some text. this is some text. this is some text. this is 
    some text. this is some text. this is some text. this is some text.
</div>

jquery:

    var oh=0; //original height of container
    var ow=0; //original width of container
    var fs=10;//original font size

    $(document).ready(function(){
        oh=$("#container").height();
        ow=$("#container").width();

        $("div#container").resizable({
            stop: function(element,ui){
              var h=ui.size.height;
              if(oh==0) return;
              var nfs = (h/oh) *fs;
              $("#container").css({'font-size':nfs+"px"});
           },
           ghost: true
         });
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文