What are the valid css properties that we can use with animeJs to animate css of an element?

137 Views Asked by At

I have initiated the the div's border property with 1px and I wanted to animate it to 3px but the border property in animejs method is not working. Is there any documentation for valid css properties for animejs is available ?

css class

.data-hierarchy-main-container {
  cursor: pointer;
  padding: 21px 38px;
  border: 1px solid orange;
}

JS Code

anime({
  targets: '.data-hierarchy-main-container',
  duration: 1000,
  easing: 'linear',
  border: '3px solid #332709',
});
0

There are 0 best solutions below