diff options
| author | Bas Bosman <[email protected]> | 2014-03-07 11:20:31 +0100 |
|---|---|---|
| committer | Bas Bosman <[email protected]> | 2014-03-07 11:28:48 +0100 |
| commit | acdc053ee3f17ce10088b146d7b154e609240d3c (patch) | |
| tree | cf010a5b1f5141825ee638485b67efb1a8c45428 | |
| parent | 864a18f95e29f7573c658df5869ccaa5aba4c46f (diff) | |
| download | bootstrap-acdc053ee3f17ce10088b146d7b154e609240d3c.tar.xz bootstrap-acdc053ee3f17ce10088b146d7b154e609240d3c.zip | |
Add transition-timing-function mixin to docs
| -rw-r--r-- | docs/css.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/css.html b/docs/css.html index 6d14fbb0d..fea9711eb 100644 --- a/docs/css.html +++ b/docs/css.html @@ -3078,7 +3078,7 @@ a { {% endhighlight %} <h3 id="less-mixins-transitions">Transitions</h3> - <p>Three mixins for flexibility. Set all transition information with one, or specify a separate delay and duration as needed.</p> + <p>Multiple mixins for flexibility. Set all transition information with one, or specify a separate delay and duration as needed.</p> <p>The mixins are <strong>deprecated</strong> as of v3.2.0, with the introduction of autoprefixer. To preserve backwards-compatibility, Bootstrap will continue to use the mixins internally until Bootstrap v4.</p> {% highlight scss %} .transition(@transition) { @@ -3097,6 +3097,10 @@ a { -webkit-transition-duration: @transition-duration; transition-duration: @transition-duration; } +.transition-timing-function(@timing-function) { + -webkit-transition-timing-function: @timing-function; + transition-timing-function: @timing-function; +} .transition-transform(@transition) { -webkit-transition: -webkit-transform @transition; -moz-transition: -moz-transform @transition; |
