forked from spen/seminar
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
;(function($, win, undefined) {
|
|
// ECMAScript 5 嚴格模式
|
|
'use strict';
|
|
$(document).ready(function() {
|
|
var timeout_id;
|
|
if (window.innerWidth < 768) {
|
|
if($('.mobile-menu .modules-menu').length == 0){
|
|
$(".modules-menu").appendTo('.mobile-menu');
|
|
}
|
|
}
|
|
$(window).resize(function() {
|
|
window.clearTimeout(timeout_id)
|
|
if (window.innerWidth < 768) {
|
|
if($('.mobile-menu').length != 0){
|
|
timeout_id = setTimeout(function(){
|
|
if($('.mobile-menu .modules-menu').length == 0){
|
|
$(".modules-menu").appendTo('.mobile-menu');
|
|
}
|
|
}, 500);
|
|
}
|
|
} else {
|
|
if($("div.aside").length == 0){
|
|
timeout_id = setTimeout(function(){
|
|
if($('.mobile-menu .modules-menu').length > 0){
|
|
$("header .container").append($('.mobile-menu .modules-menu'))
|
|
}
|
|
}, 500);
|
|
}else{
|
|
timeout_id = setTimeout(function(){
|
|
if($('.modules-menu').length > 0){
|
|
$("div.aside").eq(0).append($('.modules-menu'))
|
|
}
|
|
}, 500);
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}(jQuery, window)); |