将Cubic-bezier添加到HTML

时间:2016-02-18 17:17:43

标签: jquery html css yui transitions

寻找有关使用yahoo apis的见解或帮助:' yui transition'。

我尝试使用jQuery在SimplyPrepaidDealer.com上的3张卡片中添加一个立方贝塞尔曲线,但我是否坚持使用' yui'激活代码段?

最近,site使用了yui' yahooapis'作为rel样式表。

Yui使用自己的过渡。 http://yuilibrary.com/yui/docs/transition/

该网站是使用大量的jQuery,CSS,yui-pure构建的。我在哪里可以使用代码片段将立方贝塞尔过渡添加到网站上打开的容器上,即预付费,市场,故事。

    CSS Code snippets, short and long-hand:

   -webkit-transition: all 1200ms cubic-bezier(0.205, 0.725, 0.460, 1.000); 
   -moz-transition: all 1200ms cubic-bezier(0.205, 0.725, 0.460, 1.000); 
   -o-transition: all 1200ms cubic-bezier(0.205, 0.725, 0.460, 1.000); 
    transition: all 1200ms cubic-bezier(0.205, 0.725, 0.460, 1.000); /* custom */

   -webkit-transition-timing-function: cubic-bezier(0.205, 0.725, 0.460, 1.000); 
   -moz-transition-timing-function: cubic-bezier(0.205, 0.725, 0.460, 1.000); 
   -o-transition-timing-function: cubic-bezier(0.205, 0.725, 0.460, 1.000); 
    transition-timing-function: cubic-bezier(0.205, 0.725, 0.460, 1.000); /* custom */

0 个答案:

没有答案