Which is faster? - modifying css property or adding class in jquery

前端 未结 4 1847
暗喜
暗喜 2021-01-21 00:17

I have about 100 elements in like and am trying to create an animation with jquery.

I need to a

4条回答
  •  轮回少年
    2021-01-21 00:52

    You can even consider using a style tag.

    It could turn to be very fast. For example if you have a lot of elements to modify, let's say 100 elements, as you write your css only once, the DOM will be changed only once.

    HTML:

    
    
    ...

    SCRIPT:

    
    

    http://jsperf.com/foox/4

提交回复
热议问题