English 中文(简体)
流动的频率
原标题:jquery fadein() with movement

下面是控制两层文字和文字的法规。 案文继者展示后,案文显示

<div id="textlayer" style="width:500px; height:500px; background-color:#FFFFFF;filter:alpha(opacity=70);opacity:0.8; position:absolute;left:250;top:150;display:none;">
    <div id="text" style="display:none; padding-top:300px">
    </div>
</div>

    function div2() {
        for (i=0;i<displaymax;i++) {
        $( #span +i).fadeOut( slow );
        }
        $( #textlayer ).fadeIn( slow , function () {
            $( #text ).fadeIn(3000);
        });
    }

但我想,案文(正文)与从底向上的流动相左,这又如何补充上述法典的含义?

最佳回答

你们是否正在寻求这种影响?

http://jsfiddle.net/5agg2/

当然,没有肤色。 这在主编中消失,然后从底部向上转至正文。

Script

$( #textlayer ).fadeIn( slow , function () {
   $( #text ).animate({ opacity :  show ,  paddingTop : 0}, 2000);
});

Markup

<div id="textlayer" style="width:500px; height:500px; background-color:#00FFFF;filter:alpha(opacity=70);opacity:0.8;position:absolute;left:250;top:150;display:none;overflow:hidden;">
    <div id="text" style="display:none; background-color:Red; padding-top:900px">
        Test Text
    </div>
</div>

www.un.org/Depts/DGACM/index_spanish.htm 我添加了<条码>:900px,以贴上正文的标记,将其移至含有干.的范围之外,我还添加了<条码>流:hidden;。

问题回答

消除缺陷 公正使用囚犯

$( #text ).animate({ opacity :  show ,  paddingTop : 0});




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签