Google News
logo
Anime.js - Interview Questions
What is the Object property in Anime.js?
Any Object property containing a numerical value can be animated.

Example value
prop1 50
'prop2' '100%'

Example : 
var objPropLogEl = document.querySelector('.js-object-log');

var myObject = {
  prop1: 0,
  prop2: '0%'
}

anime({
  targets: myObject,
  prop1: 50,
  prop2: '100%',
  easing: 'linear',
  round: 1,
  update: function() {
    objPropLogEl.innerHTML = JSON.stringify(myObject);
  }
});
Advertisement