[javascript] 팝업창 띄우기 1234567891011 function test(){ window.open("naver.com", "네이버", "Width=470, Height=470, left=0,top=0, scrollBars=no"); } Colored by Color Scriptercs 개발 2014.02.03
[아파치] 아파치 사이트 주소 http://projects.apache.org/indexes/alpha.htmlhttp://www.apache.or.kr/category 프로그램 2014.02.03
[javascript] 아이폰, 안드로이드 기기 확인 스크립트 1234567891011121314var ua = String( navigator.userAgent ).toLowerCase(); //안드로이드의 경우if(/android/.test(ua)){ location.href = "https://play.google.com/store/apps/details? id=com.parksmt.jejuair.android16&feature=nav_result#?t=W251bGwsMSwyLDNd"; //아이폰의 경우} else if(/iphone|ipad/.test(ua)){ location.href = "https://itunes.apple.com/kr/app/id373053637"; }Colored by Color Scriptercs 개발 2014.02.03
[cocos2d-x] 참고 및 예제 사이트 모음 참고사이트http://zzaps.tistory.com/http://cozycoz.egloos.com/http://progagmer.blog.me/197790479 예제http://www.cocos2d-x.org/MoonWarriors/index.htmlhttp://www.cocos2d-x.org/html5-samples/samples/games/FruitAttack/index.htmlhttp://www.cocos2d-x.org/html5-samples/samples/tests/index.html 개발 2014.02.03