'프로그래밍'에 해당되는 글 42건

  1. 2009.09.25 네이버 스마트에디터, 다음 오픈에디터
  2. 2009.09.23 [02] selector
  3. 2009.09.23 [01] jQuery Core
  4. 2009.09.23 [플러그인] 쿠키
  5. 2009.09.23 팝업창 생성

네이버 스마트에디터, 다음 오픈에디터

|

지금 현재 내가 쓰고 있는 에디터는 스마트에디터이다.

그런데 다국어가 필요해서 검색을 하다가 다음 오픈에디터를 발견했다.

그래서 데모를 보니 스마트보다 괜찮아보이네?

재빨리 적용해봐야지.

네이버 스마트에디터 http://dev.naver.com/projects/smarteditor
데모 http://dev.naver.com/projects/smarteditor/wiki/SmartEditorBasicUserInterfacePreview

다음 에디터 http://code.google.com/p/daumopeneditor/
데모 http://uie.daum.net/openeditor/sample/1.5.1/editor.html

And

[02] selector

|

jQuery 셀렉터

: CSS의 셀렉터와 같은 방법으로 이용한다.

body {                            // 문서상에 body 요소 안의 모든 색상이 #000000으로 적용
     color:#000000;
}
input.texter {                   // 문서상에 input 요소 중 class값이 texter인 요소에 넓이는 100px, 높이는 30px로 적용
     width: 100px;
     height: 30px;
}
#board {                         // 문서상에 id값이 board인 요소에 line-height가 적용
     line-height: normal;
}

$("#myDiv").css("border","3px solid red");

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

jquery dom 객체 존재 여부 체크  (1) 2010.09.10
jQuery 기본 셀렉터  (0) 2010.06.10
[01] jQuery Core  (0) 2009.09.23
[플러그인] 쿠키  (0) 2009.09.23
팝업창 생성  (0) 2009.09.23
And

[01] jQuery Core

|

jquery를 사용하는 방법.

$(function(){
     // Document is ready
});

이렇게 사용한다.

$는 jquery라는 것을 알리기위한 asp에서는 <% %>, php <?php ?> 정도인거 같다.

$대신 jQuery를 적어도 무방하다.

http://jquery.com

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

jQuery 기본 셀렉터  (0) 2010.06.10
[02] selector  (0) 2009.09.23
[플러그인] 쿠키  (0) 2009.09.23
팝업창 생성  (0) 2009.09.23
[플러그인] 툴팁  (0) 2009.09.23
And

[플러그인] 쿠키

|

이전 포스트에서 잠깐 나온 쿠키플러그인


$.cookie('the_cookie');     // get cookie
$.cookie('the_cookie', 'the_value');     // set cookie
$.cookie('the_cookie', 'the_value', { expires: 7 });     // set cookie with an expiration date seven days in the future
$.cookie('the_cookie', '', { expires: -1 });      // delete cookie
$.cookie('the_cookie', null);     // delete cookie

플러그인 원본이 어디있는지 잊어버려서 링크를 못 걸겠다. ㅜ,.ㅜ



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

jQuery 기본 셀렉터  (0) 2010.06.10
[02] selector  (0) 2009.09.23
[01] jQuery Core  (0) 2009.09.23
팝업창 생성  (0) 2009.09.23
[플러그인] 툴팁  (0) 2009.09.23
And

팝업창 생성

|

<style type="text/css">
/* Popup Style */
.dragDiv { position:absolute; z-index:1000; background-color:#EFF7FF; border:1px solid #96C2F1; }
.dragDiv h5 { background-color:#B2D3F5; padding:5px; height:16px; margin:1px; font-size:12px; }
.dragDiv .pop_content { position:relative; }
.dragDiv .pop_btn { margin:3px 5px 3px 3px; text-align:right; height:20px; vertical-align:middle; text-align:middle; }
.dragDiv .pop_sub { width:100%; height:100%; }
.dragDiv .pop_sub_title { text-align:center; margin:5px; padding:0; font-size:14px; }
.dragDiv .pop_sub_content { margin:0 5px; padding:0; }
</style>

<script type="text/javascript">
     $(function() {
          $('.dragDiv').Drags({
               handler: '.handler',
               zIndex:1000,
               opacity:.9
          });
     });
     function popHide( arg ) {
          $("div[id='"+ arg +"']").fadeOut("fast");
     }
     function popFired( arg, day ) {
          $.cookie( arg, 'closed', { expires: day });
          popHide( arg );
     }
</script>

<div id="dragDiv" class="dragDiv">
     <h5 class="handler">팝업 타이틀<a href="#" onclick="popHide('dragDiv');return false;" class="fr">닫기</a></h5>
     <div class="pop_content">팝업 내용</div>
     <div class="pop_btn">
          <label><input type="checkbox" name="" value="" onclick="popFired('dragDiv','1');" />하루동안 창닫기</label>
     </div>
</div>

드래그가 가능한 팝업창. 쿠키를 지원한다.

쿠키와 드래그 스크립트 파일을 로드해야 가능.

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

jQuery 기본 셀렉터  (0) 2010.06.10
[02] selector  (0) 2009.09.23
[01] jQuery Core  (0) 2009.09.23
[플러그인] 쿠키  (0) 2009.09.23
[플러그인] 툴팁  (0) 2009.09.23
And
prev | 1 | ··· | 3 | 4 | 5 | 6 | 7 | 8 | 9 | next