/* * @Description : 页面逻辑 * @Author : Tao * @Date : 2024-08-15 18:07:19 * @LastEditors : Tao * @LastEditTime : 2024-08-29 20:43:28 * @ReferenceWeb : */ const wowObj = {}; var defaults = {}; wowObj.total = $.extend(defaults, { init() { if (typeof WOW === "function") { this.wowInit(); } return this; }, wowInit() { this.wow = new WOW({ animateClass: "animated", live: false, offset: 0, }); this.wow.init(); }, }); wowObj.total.init();