New Score :0
High Score :0
Run Best
NICE BUSINESS TYPE INDICATOR
3. ๊ธ์ ์ ์น๊ตฌ์๊ฒ ๋น๋ ธ๋๋ฐ ์ค๋์ด ๋์ ์ฃผ๊ธฐ๋ก ํ๋ .. ๊ทธ๋ฐ๋ฐ ์นด๋๊ฐ์ ๋ด์ผํ๋ ๋ ๋ ์ค๋์ธ๋ฐ... ์ด๊ฑธ ์ด์ฉ๋...
4. ์ฐ๋ฆฌ ํ์ฌ๋ ์ค์ํ ์์ฌ ๊ฒฐ์ ์ ํ ๋?
5. ์ด์ฌํ ์ผํ ๋๋ฅผ ์ํ ์ ๋ฌผ์ ์ฃผ๊ณ ์ถ๋ค. ์ด๋ค๊ฒ ์ข์๊น?
6. ์ํ์์ ํฌ์์ํ์ ์ถ์ฒ๋ฐ์๋ค. ์ด๋ค๊ฑธ ๊ฐ์ ํ์ง?
7. ํ์ฌ์์์ ๋๋?
8. ๊ฟ์์ ๊นจ์ด๋๋ 20๋ ์ ์ผ๋ก ๋์๊ฐ๋ค. ๋น์ ์ด ์ ์ผ ๋จผ์ ํ๋์ผ์?
9. ๋ด๊ฐ ์ธ์ฌ ๋ด๋น์๋ผ๋ฉด ์ ๊ท ์ ์ฌ์ ์ฑ์ฉ ์ ์ ์ผ ์ค์ํ๊ฒ ๋ณด๋๊ฒ์?
10. ํ์ฌ์ ์ ๋ง ์ซ์ดํ๋ ๋๋ฃ๊ฐ ์๋ค๋ฉด?
11. ๊ฐ๋ํ ์ง์ ๊ฐ์ฅ์ด ๋์๋ค.. ์๋ ์ ์์ผ ๋ ์ ๋ฌผ์?
12. ํ์ ํ์ฌ ์ถ๊ทผ ์คํ์ผ์?
13.ํ์ฌ ์ฒด์ก๋ํ ํ๋ ๋ ์ด๋ค. ์ค๋ ๋ญํ์ง?
14. ๋์ ์ ๋ฌด ์คํ์ผ์?
<!doctype html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"/>
<title>Document</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<script type="text/javascript">
var device_width = 0; //์ ์ ๋๋ฐ์ด์ค width๊ฐ์ ์ ์ฅํ๋ ๋ณ์
var device_height = 0; //์ ์ ๋๋ฐ์ด์ค height๊ฐ์ ์ ์ฅํ๋ ๋ณ์
var width_position = 0;
var height_position = 0;
var tmpScrollTop_Y = 0;
//๋๋ฐ์ด์ค ์ฌ์ด์ฆ๋ฅผ ๊ตฌํด์ ๋ณ์์ ์ ์ฅ
function device_size(){
device_width = viewportSize().width;
device_height = viewportSize().height;
tmpScrollTop_Y = device_height * 4;
}
function viewportSize(){
var size_div = document.createElement( "div" );
size_div.style.cssText = "position:fixed;top:0;left:0;bottom:0;right:0;";
document.documentElement.insertBefore(size_div, document.documentElement.firstChild );
var size_res = {width:size_div.offsetWidth, height:size_div.offsetHeight };
document.documentElement.removeChild(size_div);
return size_res;
}
/* swipeup */
$('.slide_box').on('swipeup',function(){
if($(".slide_box > div:first-child").css("top") != "0px"){
$('.slide_box .school_layout div').parents('.school_layout').animate({"top":'-='+device_height+''},"500");
}else{
return;
}
});
/* swipedown */
$('.slide_box').on('swipedown',function(){
if($(".slide_box > div:first-child").css("top") != tmpScrollTop_Y + "px"){
$('.slide_box .school_layout div').parents('.school_layout').animate({"top":'+='+device_height+''},"500");
}else{
return;
}
});
/* swipeleft */
$('.slide_box').on('swipeleft',function(){
if($(".slide_box > div:last-child").css("left") != "0px"){
$('.slide_box .school_layout').animate({"left":'-='+device_width+''},"500");
}else{
return;
}
});
/* swiperight */
$('.slide_box').on('swiperight',function(){
if($(".slide_box > div:first-child").css("left") != "0px"){
$('.slide_box .school_layout').animate({"left":'+='+device_width+''},"500");
}else{
return;
}
});
function drawDiv(){
var str = '';
for(var i=0; i < 5; i++ ){
str += '<div style="position:absolute;top:0px;left:'+width_position+'px;width:100%;">';
width_position += device_width;
height_position -= device_height;
pasteTxt += '<div style="position:absolute;top:'+height_position+'px;left:0;width:100%;">';
}
$('#divName').html(str);
}
</script>
</head>
<body>
</body>
</html>