반응형
반응형

CSS3 word-break Property

Break words at an appropriate hyphenation point:




p.test {word-break:hyphenate;}


Syntax


word-break: normal|break-all|hyphenate;

Value Description
normal Breaks non-CJK scripts according to their own rules
break-all Lines may break between any two characters for non-CJK scripts
hyphenate Words may be broken at an appropriate hyphenation point



CSS white-space Property

Specify that the text in paragraphs will never wrap:


ex) http://www.w3schools.com/cssref/playit.asp?filename=playcss_white-space



p
{
white-space:nowrap;
}

Value Description
normal Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary. This is default
nowrap Sequences of whitespace will collapse into a single whitespace. Text will never wrap to the next line. The text continues on the same line until a <br /> tag is encountered
pre Whitespace is preserved by the browser. Text will only wrap on line breaks Acts like the <pre> tag in HTML
pre-line Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks
pre-wrap Whitespace is preserved by the browser. Text will wrap when necessary, and on line breaks
inherit Specifies that the value of the white-space property should be inherited from the parent element



반응형
반응형

올해 8월부터 온라인상 주민번호 수집이 전면 금지되는데, 예전에도 에이전시에서 사이트 만들면서 많은 논란이 생겼던 부분이다.


행정안전부에선 공공기관 및 민간기업의 주민번호 수집 및 이용이 원칙적으로 금지된다고 한다.

온라인은 8월부터고 오프라인은 하반기 부터라는데.


주민번호를 대체할 수단을 사용하겠다는건데. 이건 뭐 대체 수단은 결국 주민번호가 아닌것이고, 중요한 서류에 대한 것은 주민번호가 들어가야 할텐데. 


주민번호가 대체된다면 그것도 결국 그 사람을 나타내는 정보이기때문에 주민번호와 동일하게 되는것이 아닌가 하는 생각도 드는군.


아이핀이라든지, 안심번호라든지. 결국 그 사람과 연결이 되는 정보인것을.


그 많은 사이트들은 어떻게 바꿀 것이며, 주민번호로 연동되는 기존정보들은 다 바뀌어야 하는데 과연 그렇게 될까?

사이트 가입창에서만 주민번호 안보이고, 나중에 따로 수집받는 형태가 되는 뭐 그런 변형적인 방법도 나올 법하다.




반응형
반응형

Connectivity

More efficient connectivity means more real-time chats, faster games, and better communication. Web Sockets and Server-Sent Events are pushing (pun intended) data between client and server more efficiently than ever before.

Demos

Websocket.org echo test
HTML5demo.com websocket demo
HTML5demo.com online connectivity monitor

In the Wild

Plink
Word2
Stream Congress
Hummingbird Realtime Analytics
Scrumblr realtime SCRUM sprint board
noVNC - a full VNC client implemented in Canvas & WebSockets


반응형
반응형

크로스 플랫폼 개발환경 - 웹앱 인가요?

같은 서비스가 다양한 플랫폼에서 동일하게 작동하게 하고 싶은 욕구를 충족시켜주기위해 태어났지만,

일단 구색은 갇추고 있는 크로스 플랫폼들. 이제 알만한 사람은 다 아는 뭐 그런것!


폰갭 http://phonegap.com

앱스프레소 http://appspresso.com

티타늄(타이타늄) http://www.appcelerator.com

로도스 http://www.rhomobile.com

모싱크 http://mosync.com


뭐 이정도?

웹이 대세일세!!!

반응형
반응형

Navigator Object

The navigator object contains information about the browser.


appName

 Browser 이름

 appCodeName  Browser 코드이름
 appVersion  Browser 버전
 userAgent

 Browser의 USER-AGENT

 mineTypes  Browser 에서 지원하는 MINE 타입
 plugins  Plug-in 종류
 language

 Browser에서 사용중인 언어

 platform  Browser가 작동중인 System의 종류

 javaEnabled()

 javascript가 가능한지 여부



반응형

'프로그래밍 > Script' 카테고리의 다른 글

[javascript] 웹 화면 확대,축소  (0) 2012.06.19
Node.js , Python, Django, Play Framework  (0) 2012.05.29
node.js 외 js 관련  (0) 2012.03.26
jQuery에서 $(document).ready vs. $(window).load  (0) 2012.03.26
HTML5 Web Workers  (0) 2012.02.21
반응형

JSP에서 안드로이드 아이스크림 확인하기.



String ua    = request.getHeader("USER-AGENT");

if(ua.indexOf("Android") > -1){
    int    ver_num = 0;
    String an_d_v  = ua.substring(ua.indexOf("Android"));

    try{
        ver_num = Integer.parseInt( an_d_v.substring(an_d_v.indexOf(" ") + 1, an_d_v.indexOf(".")) );
    }catch(Exception e){
        ver_num = 4;
    }

}




  if(useragent.indexOf("android 4.0") >= 0){
        payMethodDisable = true;
    }


반응형

+ Recent posts