webkit transition syntax in javascript?

前端 未结 5 1077
借酒劲吻你
借酒劲吻你 2021-01-19 03:34

I\'m looking for the webkitTransition object reference here

 function spawnAnimation(what){
    //sets the moving element
    var moveingEl = document.getEl         


        
5条回答
  •  温柔的废话
    2021-01-19 04:17

    I know it's a workaround, but can you use jQuery?

    $(moveingEl).css('-webkit-transform', 'translateX(200px)');
    

提交回复
热议问题