.js-tab-content {
    opacity: 0;
    animation: ani 2s forwards;
}
  
@keyframes ani {
    0% {opacity: 0;}
    100% {opacity: 1;}
}