You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
996 B
29 lines
996 B
/*
|
|
DESTOON Copyright (C)2008-2099 www.destoon.com
|
|
This is NOT a freeware,Use is subject to license.txt
|
|
*/
|
|
|
|
if(window.screen.width<1280) {
|
|
$('body').width(1200);
|
|
$('[data-hide-1200]').hide();
|
|
document.write('<style type="text/css">.lt{max-width:200px;}</style>');
|
|
} else if(window.screen.width<1366) {
|
|
$('[data-hide-1200]').hide();
|
|
document.write('<style type="text/css">.lt{max-width:200px;}</style>');
|
|
} else if(window.screen.width<1440) {
|
|
document.write('<style type="text/css">.lt{max-width:240px;}</style>');
|
|
} else if(window.screen.width<1600) {
|
|
document.write('<style type="text/css">.lt{max-width:320px;}</style>');
|
|
} else if(window.screen.width<1920) {
|
|
document.write('<style type="text/css">.lt{max-width:360px;}</style>');
|
|
}
|
|
$(function(){
|
|
if(window.screen.width<1280) {
|
|
$('body').width(1200);
|
|
$('[data-hide-1200]').hide();
|
|
} else if(window.screen.width<1366) {
|
|
$('[data-hide-1200]').hide();
|
|
} else if(window.screen.width<1440) {
|
|
$('[data-hide-1400]').hide();
|
|
}
|
|
});
|