glam icon indicating copy to clipboard operation
glam copied to clipboard

How to play a animation with js after glam ready?

Open yeso opened this issue 9 years ago • 0 comments

.play{ animation-duration:.8s; animation-name:jump; animation-iteration-count:infinite; animation-timing-function:ease-in-out; } @keyframes jump { 0% { transform:translateY(0); } 50% { transform:translateY(0.3); } 100%{ transform:translateY(0); } }

obj.addEventListener('viewover', function(e) { e.target.className = 'play'; });

/////////////////// it do not work~

yeso avatar Dec 15 '15 03:12 yeso