CSS-Tricks / AnythingSlider

A jQuery Slider plugin for anything.
http://css-tricks.github.io/AnythingSlider/
GNU Lesser General Public License v3.0
1.15k stars 380 forks source link

CSS 'transition-duration' property fails CSS3 validation #556

Closed hughlaw closed 11 years ago

hughlaw commented 11 years ago

The last properties in the CSS fail CSS3 validation:

.anythingSlider .start-stop { transition-duration: 0; -o-transition-duration: 0; -moz-transition-duration: 0; -webkit-transition-duration: 0; }

Easy fix to this is to add a a seconds indicator to the duration:

.anythingSlider .start-stop { transition-duration: 0s; -o-transition-duration: 0s; -moz-transition-duration: 0s; -webkit-transition-duration: 0s; }

Mottie commented 11 years ago

Thanks @hughlaw!

I'll have this fixed in the next update!