I know, with CSS, we have to use vendor prefixes such as -ms-, -moz-, -webkit- and -o- for transform property. And for animation property just -moz-, -webkit- and -o-. I want to know how to set each of them from Javascript? And transition property also.
Looking for something like this -
object.style.vendorTransform // whole list
object.style.vendorAnimation // whole list
object.style.vendorTransition // whole list
Thanks in advance.
Note- I don't need any plugin, I need the pure Javascript code.