Jony/assets/js/joe.archive.js

17 lines
367 B
JavaScript
Raw Normal View History

2021-01-27 09:10:23 +00:00
/* 搜索页面需要用到的JS */
2021-01-25 10:36:43 +00:00
document.addEventListener('DOMContentLoaded', () => {
2021-02-04 12:17:05 +00:00
/* 激活列表特效 */
{
const wow = $('.joe_archive__list').attr('data-wow')
if (wow !== 'off' && wow)
new WOW({
boxClass: 'wow',
animateClass: `animated ${wow}`,
offset: 0,
mobile: true,
live: true,
scrollContainer: null
}).init()
}
})