Jony/assets/js/joe.archive.js

17 lines
491 B
JavaScript
Raw Normal View History

2021-01-27 09:10:23 +00:00
/* 搜索页面需要用到的JS */
2021-02-19 07:08:07 +00:00
document.addEventListener('DOMContentLoaded', function () {
/* 激活列表特效 */
{
var wow = $('.joe_archive__list').attr('data-wow');
if (wow !== 'off' && wow)
new WOW({
boxClass: 'wow',
animateClass: 'animated '.concat(wow),
offset: 0,
mobile: true,
live: true,
scrollContainer: null
}).init();
}
});