You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
339 B
JavaScript

$(function() {
//判断设备
if(/AppleWebKit.*Mobile/i.test(navigator.userAgent)|| /Android/i.test(navigator.userAgent) || /Mobile/i.test(navigator.userAgent)){
$('.flexslider').flexslider({
animation: "slide"
});
}else{
$('.flexslider').flexslider({
animation: "fade"
});
}
createImageLoader();
});