20151014 黄华 review

1 document.getElementById 可以用 zepto 的 $

2 可以直接使用zepto.js的on

m.on($('.new h2 .p1')[0], 'animationend', function(e){

    $('.new h2 .p2').addClass('teampic-flash');

})

改为

$('.new h2 .p1').on('animationend', function(e){

    $('.new h2 .p2').addClass('teampic-flash');

})

你可能感兴趣的:(20151014 黄华 review)