English 中文(简体)
采用设定的 JS 过渡
原标题:JS transitions with setInterval

我知道有Cs过渡,但是我想在文本上应用Cs过渡(而Cs不能用Cs过渡)。我想要定制过渡。

你能给我一个网站吗? 你在哪里绘制曲线? 它让你得到js计算? (或类似的东西)

最佳回答

You should definitely see at "Math: Ease In, ease Out a displacement using Hermite curve with time constraint". May be this question is a bit different from yours, but there was given a good link to "Interpolation Tricks" which in turn may clarify the "Easy In/Out" technique for you. The link is worth to see it indeed.

问题回答

当我与某些视觉特征合作时, 我需要设置表格单元格的浮点数。 不是本地设置, 而是动画 : 0.1.0. 15. 0. 0.2... 0. 0. 3......... # 1 短间隔。 闪烁。 我使用像这样的 :

 value = 150
 step = value / 50; // 50 iterations, use preffered for you    
 timer_id = setInterval(function()
 {
   next_iteration += step
   if (next_iteration >= value)
   {
     next_iteration = value
   }
   field.text(next_iteration)
   if (next_iteration >= value)
   {
     clearInterval(timer_id);
     return true
   }
 }, 0 /* zero or more, this is pause between iterations */)

您可以在 css3 中进行文本转换, 演示访问访问 < a href="http://www.catswhocode.com/blog/8-examples-of-stunning- css3- text- effects" rel="nofollow" >这里

Jquery 的动画 () 可以在基本过渡中完成; 如果您想要更复杂的路径, 我猜这不会影响您的需要 。

But there was a similar question: Complex animation in jQuery

refering to: http://weepy.github.com/jquery.path/

我知道这是旧的, 但是... 试着使用一些方程来在运动的某个特定点 使用简单的外方程来计算位置 。 这里的i 找到了一个, 用于立方方程的宽度 。

Math.easeInOutCubic = function (t, b, c, d) {
    t /= d/2;
    if (t < 1) return c/2*t*t*t + b;
    t -= 2;
    return c/2*(t*t*t + 2) + b;
};

与 se Interval 函数结合可以非常有效, 并给您带来大量的控制。 只要询问您是否需要更多的信息...





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签