造型jQuery规模效应

时间:2010-09-05 00:44:09

标签: jquery css jquery-ui jquery-effects

关于比例效应,我有一个简单的问题......

我想要完成一个粗略的动画。我有一个快速淡入淡出,然后在屏幕上列出元素缩放和淡出:

   jQuery("#page_content").fadeOut(2000, function() {
    jQuery("#intro_animation").slideDown(2500, function () {
      var delay_duration = 10;  

      jQuery("ul#intro_words > li").each(function(index) {
        jQuery(this).delay(delay_duration).hide("scale", {percent: 700, origin: 'center', fade: 'hide' }, 2000);
        delay_duration += 2000;
      });

      jQuery("#intro_animation").delay(delay_duration).slideUp(2500, function() {
        jQuery("#page_content").fadeIn(2000);
      });
    });
  });

我的问题在于设计受影响的文本元素,它们会在右侧截断。有没有人知道一个可以防止文本被切断的解决方案?

1 个答案:

答案 0 :(得分:0)

我认为我发现它......它不是100%居中(更像是99%),但似乎没有让文字被切断。

ul#intro_words > .ui-effects-wrapper > li {
    list-style-image: none;
    list-style-type: none;
    list-style-position: outside;
    margin: 0 auto;
    padding: 0 40px;
    text-indent: -20px;
}