如何让<div>出现在慢动作</div>中

时间:2012-04-22 08:33:30

标签: javascript

我希望javascript代码以慢动作显示div。

function showDiv(divID)
{
       if(document.getElementById(divID).style.display=='none')
       {
           document.getElementById(divID).style.display='block';  
       }
}

这里出现div,但不是慢动作。谁能帮忙? 提前致谢

开发..

5 个答案:

答案 0 :(得分:3)

Crossbrowser解决方案(没有jQuery):

HTML:

<div id="toChange" ></div>

CSS:

#toChange
{
    background-color:red;
    width:200px;
    height:200px;
    opacity:0;//IE9, Firefox, Chrome, Opera, and Safari
    filter:alpha(opacity=0);//IE8 and earlier
}

Javascript:

var elem=document.getElementById("toChange");
var x=0;

function moreVisible()
{
    if(x==1)clearInterval(t);
    x+=0.05;
    elem.style.opacity=x;
    elem.style.filter="alpha(opacity="+(x*100)+")";
}
var t=setInterval(moreVisible,25);

小提琴演示:http://jsfiddle.net/JgxW6/1/

答案 1 :(得分:3)

在这个场景中不需要jQuery,它只是一个基本的我用你的函数来解释它是如何完成的。

   function showDiv(divID)
   {
       if(document.getElementById(divID).style.display=='none')
       {
           document.getElementById(divID).style.display='block';  
       }
}

你的功能基本上是从BOX模型中移除整个元素(块的切换,没有从BOX模型中完全删除元素,因此它不占用任何空间或任何东西,但这可能/可能不会导致某些布局问题);

现在要以慢动作为它设置动画,你需要一个计时功能。

计时函数是一个简单的数学函数,它给出了给定时间内属性的值(在你的情况下是不透明度)或者取决于其他参数。

除此之外,您还需要使用不透明度等属性才能淡化它(Opacity是一个定义元素及其子元素透明度的CSS属性)

因此,让我们从使用JS中的setTimeout函数开始一个非常基本的show / hide。

function getValue(t,dir){

  if( dir > 0){
   return 0.5*t; /* Y = mx + c  */
  }else{
   return 1-(0.5*t);
  }
  /* 
    Here the slope of line m = 0.5.
    t is the time interval.
  */
}


function animator(divID){
      if(!(this instanceof animator)) return new animator(divID); /* Ignore this */
  var Node = document.getElementById(divID),
      start = new Date.getTime(), // The initiation.
      now = 0,
      dir = 1,
      visible = true;
  function step( ){
    now = new Date.getTime();
    var val = getValue( now - start,dir)
    Node.style.opacity = val;
    if( dir > 0 && val > 1 || dir < 0 && val < 0 ){
      visible = !(visible*1);
      // Optionally here u can call the block & none 
      if( dir < 0 ) { /* Hiding  and hidden*/
        Node.style.display = 'none'; // So if were repositioning using position:relative; it will         support after hide 
      }
      /* Our animation is finished lets end the continous calls */
      return;
    }
    setTimeout(step,100); // Each step is executated in 100seconds
  }
  this.animate = function(){
    Node.style.display = 'block';
    dir *= -1;
    start = new Date.getTime();
    setTimeout(step,100);
  } 
}

现在你可以简单地调用函数

  var magician = new animator('divName');

然后按

切换动画
  magician.animate();

现在使用计时功能,您可以创建所需的任何可能性,如

  return t^2 / ( 2 *3.23423 );

甚至更高的多项式方程,如

  return t^3+6t^2-38t+12;

正如您所看到的,我们的功能非常基本,但它解释了如何使用纯js制作动画的要点。稍后您可以使用CSS3模块进行动画并使用javascript触发这些类:-)

或者也许在可用的情况下使用CSS3编写跨浏览器polyfill(它更快),如果不是,则编写JS :-)希望有帮助

答案 2 :(得分:2)

所以你有一些jQuery的答案,但是我不推荐使用jQuery,如果你喜欢淡出div

当然,jQuery使事情变得更容易,但对于一个简单的功能来说,这是一个很大的开销。

这是使用纯JS做的人:

Fade in and fade out in pure javascript

CSS3示例:

How to trigger CSS3 fade-in effect using Javascript?

答案 3 :(得分:0)

你可以使用jquery $ .show('slow'),如果你想在不使用jquery的情况下做同样的事情,那么你可能需要编写一些东西来自己显示效果,你可以查看一下jquery的show函数http://james.padolsey.com/jquery/#v=1.6.2&fn=show。或者,您也可以使用fadein()在jquery

中淡出效果

答案 4 :(得分:-1)

是的,你可以使用Jquery来做到这一点。这是我的示例

$('#divID').click(function() {
   $('#book').show('slow', function() {
// Animation complete.
  });

});

详情clik here 感谢。