Trigger CSS3 transition on page load

后端 未结 3 813
夕颜
夕颜 2021-02-15 15:45

I am trying to achieve a loading effect on the page load by CSS3 width transition. Here is the demo.

HTML

3条回答
  •  执笔经年
    2021-02-15 16:15

    By removing the class from the span and setting it in JavaScript the browser will apply the transition, but this only works on the first .skill-bar. Also .getElementsByClassName will not work in IE8 or below.

    HTML

    JavaScript

    document.getElementsByClassName('skill-bar')[0].getElementsByTagName('span')[0].className = 'w70';
    

    (so just wrap this in

提交回复
热议问题