]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
document #11326
authorMark Otto <otto@github.com>
Sun, 15 Dec 2013 03:31:03 +0000 (19:31 -0800)
committerMark Otto <otto@github.com>
Sun, 15 Dec 2013 03:31:03 +0000 (19:31 -0800)
css.html

index 83e0a70933ee3a82e34e69736891db24f8fc56e1..4edcc3a6139f30fa8f9c79427e1618cfc8f01419 100644 (file)
--- a/css.html
+++ b/css.html
@@ -2996,6 +2996,39 @@ a {
       -ms-transform-origin: @origin; // IE9 only
           transform-origin: @origin;
 }
+{% endhighlight %}
+
+    <h3 id="mixins-animations">Animations</h3>
+    <p>A single mixin for using all CSS3's animation properties in one declarations and other mixins for individual properties.</p>
+{% highlight css %}
+.animation(@animation) {
+  -webkit-animation: @animation;
+          animation: @animation;
+}
+.animation-name(@name) {
+  -webkit-animation-name: @name;
+          animation-name: @name;
+}
+.animation-duration(@duration) {
+  -webkit-animation-duration: @duration;
+          animation-duration: @duration;
+}
+.animation-timing-function(@timing-function) {
+  -webkit-animation-timing-function: @timing-function;
+          animation-timing-function: @timing-function;
+}
+.animation-delay(@delay) {
+  -webkit-animation-delay: @delay;
+          animation-delay: @delay;
+}
+.animation-iteration-count(@iteration-count) {
+  -webkit-animation-iteration-count: @iteration-count;
+          animation-iteration-count: @iteration-count;
+}
+.animation-direction(@direction) {
+  -webkit-animation-direction: @direction;
+          animation-direction: @direction;
+}
 {% endhighlight %}
 
     <h3 id="mixins-opacity">Opacity</h3>