by Anna 안나 2013. 9. 5. 00:47

스카이공공칠에서 뷰티테스터를 모집한대요.

응모하러가세요~

http://www.sky007.com//board/board.html?code=braunshop7_board13&page=1&type=v&num1=999990&num2=00000&lock=N




by Anna 안나 2013. 2. 13. 22:01

현재 sky007에서 삐아 아이섀도우 3종 뷰티테스터를 모집하고 있습니다.

자세한 사항은 아래 첨부된 사진과 링크를 참고하세요^^

 

 

 

http://www.sky007.com//board/board.html?code=braunshop7_board13&page=1&type=v&num1=999997&num2=00000&lock=N

 

 

'개인 > 미용,다이어트' 카테고리의 다른 글

이글립스 팩트  (1) 2013.09.05
브리티 뮤지션 마스카라 플러스원  (0) 2013.02.13
자외선 차단 스프레이  (0) 2009.05.31
생리를 알면 다이어트가 보인다.  (0) 2009.02.23
by Anna 안나 2013. 1. 20. 01:40
http://jqueryui.com/demos/accordion/#default

http://docs.jquery.com/UI/Accordion#overview

http://jquery.bassistance.de/accordion/demo/

'JS > jquery' 카테고리의 다른 글

셀렉터  (0) 2012.01.17
폼관련  (0) 2012.01.17
기초함수  (0) 2012.01.17
jQuery의 기초  (0) 2012.01.17
유용한 JQUERY site  (0) 2012.01.17
JQUERY 플러그인  (0) 2012.01.17
Lazy Load Plugin for jQuery  (0) 2012.01.16
jQuery Fade In Scroll To Top Button With Smooth Scroll For Blogger  (0) 2012.01.16
Sticky Sidebar jQuery plugin  (0) 2012.01.16
jQuery를 이용해 스크롤바 따라다니는 레이어 만들기(IE6,IE7,IE8,크롬,사파리,파폭)  (0) 2012.01.16
by Anna 안나 2012. 1. 17. 19:14
1. 위치 기반 셀렉터

//[모든 짝수번째<p>엘리먼트를 선택한다.]
$("p:even");

//[모든 홀수 번째<p>엘리먼트를 선택한다.]
$("p:odd");

//[(첫|마지막)번째<p>엘리먼트를 선택한다.]
$("p:(first|last)");

//(첫|마지막)번째 자식 엘리먼트. 각 리스트의 (첫|마지막)번째의 아이템을 반환한다.
$("li:(first-child|last-child)")

//형제가 없는 모든 엘리먼트를 반환한다.
$("only-child")

//[모든 테이블에서 첫째행을 선택한다.] => n값은 1부터 시작
$("table tr:n-child(1)");

//[모든 테이블에서 (짝수 | 홀수)행을 선택한다.]
$("table tr:nth-child(even|odd)");

//[n번째로 일치하는 엘리먼트] => n값은 0부터 시작
$("eq(n)");

//[n번째(포함하지 않음) 이후로 일치하는 엘리먼트] => n값은 0부터 시작
$("gt(n)");

//[n번재(포함하지 않음) 이전의 일치하는 엘리먼트] => n값은 0부터 시작
$("lt(n)");


2.CSS 셀렉터

//[<body>의 바로 아래 자식인 <div> 엘리먼트를 선택한다.]
$("body > div");

//[확장자 pdf 파일의 링크를 선택한다.]
$("a[href$=pdf]");

//[http://로 시작하는 링크를 선택한다.]
$("a[href^=http://]");

//[<body>의 바로 아래 자식이면서 링크를 포함하는 <div>엘리먼트를 선택한다.]
$("body > div:has(a)");

//[속성값이 임의의 문자열을 포함하는 엘리먼트를 찾아오라]
$("a[href*=jquery.com]");

//[선택자 id someElement 에 html을 삽입한다.]
$("#someElement").html("엘리먼트에 텍스트를 추가한다.");

//[다수의 엘리먼트와 일치하는 셀렉터에 html 추가한다.]
$("div.fillMeIn").html("노드 그룹에 텍스트를 추가한다.");

//[모든 엘리먼트와 일치한다.]
$("*");

//[E 엘리먼트 형제로 바로 다음에 나오는 엘리먼트 F와일치]
$("E+F");

//[E 엘리먼트 형제로 다음에 나오는 엘리먼트 F와일치]
$("E~F");



3. 필터 셀렉터

//[애니메이션이 적용되고 있는 엘리먼트]
$(":animated");

//[모든 버튼을 선택한다.]
$(":button");

//[모든 체크박스를 선택한다.]
$(":checkbox");

//[선택된 체크박스나 라디오 버튼을 선택한다.]
$(":checked");

//[텍스트 foo를 포함 하는 엘리먼트만을 선택한다.]
$(":contains(foo)");

//[비활성된 모든 폼 엘리먼트를 선택한다.]
$(":disabled");

//[활성된 모든 폼 엘리먼트를 선택한다.]
$(":enabled");

//[모든 파일 엘리먼트를 선택한다.]
$(":file");

//[헤더 엘리먼트를 선택한다. <h1>~<h6>]
$(":header");

//[감춰진 엘리먼트를 선택한다.]
$(":hidden");

//[폼 이미지를 선택한다.]
$(":image");

//[폼 엘리먼트를 선택한다.(input,select,textarea,button)]
$(":input");

//[필터의 값을 반대로 설정한다.]
$(":not(filter)");

//[빈엘리먼트를 제외하고 텍스트도 포함해서 자식 엘리먼틀 가지는 부모 엘리먼트를 선택한다.]
$(":parent");

//[패스워드 엘리먼트를 선택한다.]
$(":password");

//[라디오 엘리먼트를 선택한다.]
$(":radio");

//[리셋버튼을 선택한다.]
$(":reset");

//[선택된 엘리먼트를 선택한다.]
$(":selected");

//[전송버튼을 선택한다.]
$(":submit");

//[텍스트 엘리먼트 선택한다.(input type=text)]
$(":text");

//[보이는 엘리먼트를 선택한다.]
$(":visible");
by Anna 안나 2012. 1. 17. 12:32
1.checkbox



-체크박스 체크 여부 : $('#checkboxid').is(":checked") //체크되었으면 true, 아니면 false를 반환
- 선택된 값 : $("input[name=objname]:checked").val()
- 선택 : $("input[name=objname]").filter("input[value=objvalue]").attr("checked", "checked");
- 해제 : $("input[name=objname]").filter("input[value=objvalue]").attr("checked", "");
- 선택된 갯수: $("input[name=objname]:checkbox:checked").length




2. select box


-value 값 가져오기 : var select_value = $("selectboxid > option:selected").val();
-값 설정 하기 : $("selectboxid > option[value=설정값]").attr("selected", "true");


3.팝업창에서 부모창에 값 셋팅하기.

$(opener.document).find('#sendMailYN').val( "1" );

팝업창에서 부모창의 input 라디오 타입을 검색하면서 값이 2일때 체크해준다.


4. radio 라디오버튼에서 선택된 값을 찾는 방법이다.. 첫번째 방법

     //라디오 버튼의이름이 "rdobtn"인것 중 선택되어진 항목의 값을 가져온다.
   -  var selectedValue = $('input:radio[name=rdobtn]:checked').val() ;

또는
   -  var selectedValue = $('input:radio[id=rdobtn]:checked').val() ;


두번째 방법

var selectedValue = "";
 var radios = $("input:radio");  //타입이 radio인 항목을 찾는다.
 for(var i = 0; i < radios.length;i++) //
 {
      if(radios[i].checked == true) //라디오 버튼중 선택되어진 항목의 값을 가져온다.
      {
          selectedValue = $(radios[i]).val() ;
      }
 }


by Anna 안나 2012. 1. 17. 12:32

1. jQuery함수 $(...) 

jQuery 함수 $(...)

jQuery(expression,context)

CSS 셀렉터를 받아 매치된 엘리먼트 집합의 jQuery 객체를 리턴한다.


예제1

div 엘리먼트 안의 모든 p 엘리먼트를 추출하여 테두리를 붙인다.

$("div > p").css("border", "1px solid gray");

예제2

document 첫번째 form 안에 있는 모든 input 태그 타입이 radio 인 것을 추출한다.

$("input:radio", document.forms[0]);

예제3

AJAX 응답으로부터 받은 XML에서 모든 div를 추출한다

$("div", xml.responseXML);

jQuery(html)

예제1

div를 비롯한 콘텐츠를 동적으로 생성하고 body에 추가한다.

$("<div><p>Hello</p></div>").appendTo("body")

예제2

input 요소를 type 요소없이 만들 수 없다. 

이것은 Microsoft의 read / write - once 규칙에 따른 것으로, 자세한 내용은 MSDN을 참조한다.

// IE에서 작동하지 않음

$("<input/>").attr("type", "checkbox");

// IE에서 작동

$("<input type='checkbox'/>");

jQuery(elements)

이 함수의 인수는 XML Documents와 Window 개체와 같이 DOM 엘리먼트가 아닌것도 받아들인다.

예제1

body의 배경색을 바꾼다 (css 메서드는 DOM Element에 없는 jQuery개체이다)

$(document.body).css( "background", "black" );

예제2

myForm 내의 모든 엘리먼트를 표시하지 않는다 ( 배열에는 모든 것을 한꺼번에 표시하지 않는 hide 함수는 존재하지 않는다)

$(myForm.elements).hide()

jQuery(callback)

$(document).ready()의 약어

DOM Document로드가 끝난 때 바인딩 해 놓은 함수가 실행된다. 

이 함수는 $ (document) ready ()와 같게 동작한다.

이 함수는 기술 적으로는 다른 $ () 함수와 마찬가지로 모두 가능하다, 쓰임새는 없다.

예제1

DOM 준비가 가능하면 작업을 수행한다.

$(function(){

  // Document is ready

});

예제2

$별칭을 사용하여 jQuery 코드가 안정적으로 동작하므로 전역 변수에 의지하지 않고 인수 $를 기술하도록한다. 

jQuery(function($) {

  // Your code using failsafe $ alias here...

});

 

2. jQuery Object 조작

each(callback)

일치한 전체의 Element에 대하여 함수를 실행한다.

이것은 일치하는 Element를 찾을 때 마다 1번씩 매번 함수가 실행되는 것을 의미한다.

함수에서 this 포인터는 각 Element를 의미한다.

예제1

div를 찾아서 color 프로퍼티를 변경한다.

  1. $(document.body).click(function () {
        $("div").each(function (i) {
  2.         if (this.style.color != "blue") {
  3.           this.style.color = "blue";
  4.         } else {
  5.           this.style.color = "";
  6.         }
  7.     });
  8. });

전체소스 : each_1.html

예제2

DOM Element 대신 jQuery  오브젝트를 사용하는 경우 $(this)를 기술

  1. $("span").click(function () {
  2.   $("li").each(function(){
  3.     $(this).toggleClass("example");
  4.   });
  5. });

전체소스: each_2.html

 

예제3

id가 stop인 div가 발견된 시점에 false를 반환하여 루프를 빠져나온다.

  1. $("button").click(function () {
  2.   $("div").each(function (index, domEle) {
  3.     // domEle == this
  4.     $(domEle).css("backgroundColor", "yellow"); 
  5.     if ($(this).is("#stop")) {
  6.       $("span").text("Stopped at div index #" + index);
  7.       return false;
  8.     }
  9.   });
  10. });

전체소스: each_3.html

eq(position)

0 부터 length-1 가운데 일치하는 위치에 있는 엘리먼트만 찾아온다.

예제1

P 태그 집합중 위치가 2번째인 Element색상을 바꾼다.

  1. $("p").eq(1).css("color","red")

전체소스:  eq_1.html

get()

jQuery 오브젝트가 가지고 있는 Element 전체를 배열 형태로 반환한다.

jQuery 객체가 아니라 DOM Element를 조작하는데 도움이된다.

예제1

div 요소를 get() 배열로 반환한다. 그리고 reverse() 내장함수를 이용하여 배열을 반전 표시한다.

 

  1. function disp(divs) {
  2.   var a = [];
  3.   for (var i = 0; i < divs.length; i++) {
  4.     a.push(divs[i].innerHTML);
  5.   }
  6.   $("span").text(a.join(" "));
  7. }
  8. disp( $("div").get().reverse() );

 

전체소스:  get_1.html

get(index)

DOM Element의 집합으로부터 인덱스를 지정해 하나의 Element를 참조한다.

이것에 의해 jQuery 오브젝트일 필요가 없는 케이스로 특정의 DOM Element 그 자체를 조작하는 것이 가능.

예제1

 

  1. $("*", document.body).click(function (e) {
  2.   e.stopPropagation();
  3.   var domEl = $(this).get(0);
  4.   $("span:first").text("Clicked on - " + domEl.tagName);
  5. });

 

전체소스:  get_index_1.html

 

index(subject)

jQuery 오브젝트 내에서 인수로 지정된 Element 인덱스를 리턴한다.

만약 jQuery 오브젝트 내에 존재하지 않으면 -1을 리턴한다.

예제1

페이지의 div의 인덱스를 리턴한다.

 

  1. $("div").click(function () {
  2.   // this is the dom element clicked
  3.   var index = $("div").index(this);
  4.   $("span").text("That was div index #" + index);
  5. });

 

전체소스:  index.html

 

length()

jQuery 오브젝트 Element 수를  유지한다. size 함수와 같은 값을 리턴

예제1

div를 카운팅하고 div를 추가한다.

 

  1. $(document.body).click(function () {
  2.   $(document.body).append($("<div>"));
  3.   var n = $("div").length;
  4.   $("span").text("There are " + n + " divs." +
  5.                  "Click to add more.");
  6. }).trigger('click'); // trigger the click to start

전체소스:  length.html

[출처] jQuery 함수 $(...)|작성자 하늘호수



http://blog.naver.com/ctlim2?Redirect=Log&logNo=50086952309
by Anna 안나 2012. 1. 17. 12:30
$(document).ready(function() {
(이곳에 시연하고자 하는 jquery 코드가 들어감.)
});
 
위의 코드가 jQuery를 시작하는 기본 코드가 됩니다. 
Javascript 에서의 window.onload = function() { } ;

부분과 비슷합니다만, 다른점은 자바스크립트의 onload가 모든 이미지들의 로딩이 마쳐야 시연되는 반면에, jQuery는 이미지가 로딩되지 않아도 시연이 됩니다.

 

페이지가 전부 다운로드 된다음에 실행

$(window).load(function() {
     해당 기능
});

HTML이 준비가 되면 실행

$(document).ready(function() {
     해당 기능
});
위 코드는  (document).ready를 생략해
$(function() {
     해당 기능
});
로도 사용가능합니다.

 

밑에 그림은 jQuery를 사용하기 위한 기초적인 형식입니다.


실제로 우리가 사용하는 코드는 윗그림의 빨강색 네모안에 들어가게 됩니다.
코드를 쓰시는 분에 따라서는 이렇게 눈에 잘보이게 정리하시지 않고 한줄에 몰아서 쓰시기도 합니다.
(잘 보시면 알겠지만 사실은 명령코드 하나입니다.)


빨강네모안에 들어갈 우리가 사용하는 코드는 밑에 그림과 같은 형식을 가집니다.

위의 코드에서 붉은 색 부분을 선택자(Selector) 라고 합니다. 즉, 구현할 대상에 되는 녀석을 선택하는 것이죠. 사용 방법은 $() 의 괄호안에 대상이 되는 녀석을 선택하는것입니다. jQuery가 좋은것이 선택자 개념이 CSS와 거의 흡사하기 때문에 쉽게 사용할수 있습니다.

'JS > jquery' 카테고리의 다른 글

Jquery Accordion 관련 링크  (0) 2012.01.17
셀렉터  (0) 2012.01.17
폼관련  (0) 2012.01.17
기초함수  (0) 2012.01.17
유용한 JQUERY site  (0) 2012.01.17
JQUERY 플러그인  (0) 2012.01.17
Lazy Load Plugin for jQuery  (0) 2012.01.16
jQuery Fade In Scroll To Top Button With Smooth Scroll For Blogger  (0) 2012.01.16
Sticky Sidebar jQuery plugin  (0) 2012.01.16
jQuery를 이용해 스크롤바 따라다니는 레이어 만들기(IE6,IE7,IE8,크롬,사파리,파폭)  (0) 2012.01.16
by Anna 안나 2012. 1. 17. 12:29

'JS > jquery' 카테고리의 다른 글

Jquery Accordion 관련 링크  (0) 2012.01.17
셀렉터  (0) 2012.01.17
폼관련  (0) 2012.01.17
기초함수  (0) 2012.01.17
jQuery의 기초  (0) 2012.01.17
JQUERY 플러그인  (0) 2012.01.17
Lazy Load Plugin for jQuery  (0) 2012.01.16
jQuery Fade In Scroll To Top Button With Smooth Scroll For Blogger  (0) 2012.01.16
Sticky Sidebar jQuery plugin  (0) 2012.01.16
jQuery를 이용해 스크롤바 따라다니는 레이어 만들기(IE6,IE7,IE8,크롬,사파리,파폭)  (0) 2012.01.16
by Anna 안나 2012. 1. 17. 12:28
http://www.trirand.com/blog/?page_id=6



그리드 (*) : 전체 페이징을 하지 않는 Ajax 게시판
http://www.reconstrukt.com/ingrid/example2.html





팬시박스 (**) : 이미지 팝업창에 모달효과 약간의 에니메이션이 들어감.
http://fancy.klade.lv/ (****)

예제 : http://fancy.klade.lv/example



jQuery Lightbox Plugin (balupton edition) (**) : 이미지 모달 팝업
http://www.balupton.com/sandbox/jquery_lightbox/



imagebox : 이미지 모달 팝업
http://www.intelliance.fr/jquery/imagebox/



이미지 회전 :  이미지의 회전이 가능하게 한다.

http://www.piksite.com/mRotate/mRotate.html



jQuery sliding gallery demo : 이미지 애니메이션 슬라이드
http://phplug.net/components/javascript/jquery-gallery.html



이미지 슬라이딩 : 좌 우로 움직임
http://www.maxb.net/scripts/ycodaslider-2.0/include/demo/#10



이미지 공간감 효과 (***)  :  여러 이미지를 레이어 겹쳐 놓음으로써 3D 효과를 준다.

http://webdev.stephband.info/parallax.html



디자이너를 위한 jquery (**) : 태그 조작과 에니메이션 효과와 관련된 사이트
http://www.webdesignerwall.com/demo/jquery/(****)


AutoScroll (*) : 컨 트롤 키 누른 채로 mouse 움직였을 때, 자동 스크롤이 가능하게끔
http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php (****)


drag and drop (*) : 드래그 드랍 예제
http://host.sonspring.com/dragdrop/ (***)



JQuery 예제 모음 사이트 (*****)

http://www.ajaxrain.com/tag?tag=jquery


컬럭 Picker (****)  :  PhotoShop의 색 선택 기능이 가능.
http://www.intelliance.fr/jquery/color_picker/


jQuery MultiSelect (**) : custom 셀렉트 박스, 셀렉트 박스에 체크박스가 추가 되어 여러개를 선택 가능한 박스.
http://abeautifulsite.net/notebook_files/62/demo/jqueryMultiSelect.html


"jQuery checkbox v.1.0.0" demo (**)  : custom 디자인 체크박스
http://widowmaker.kiev.ua/checkbox/



jQuery Treeview Plugin Demo (**) : 트리 컨트롤러 1

http://jquery.bassistance.de/treeview/demo/



jQuery File Tree Demo (***) : JQuery 트리 컨트롤로 2
http://abeautifulsite.net/notebook_files/58/demo/



jQuery columnManager plugin (*) : 테이블의 컬럼을 추가 삭제등의 기능 제공
http://p.sohei.org/stuff/jquery/columnmanager/demo/demo.html


jQuery AIR (***) : ajax를 이용한 항공 좌석 예약.
http://www.digital-web.com/extras/jquery_crash_course/


Masked Input Plugin (**) : 입력상자에 exel과 같은 서식 적용.
http://digitalbush.com/projects/masked-input-plugin


Watermark Input Plugin (*): 입력상자에 워터마크 표시
http://digitalbush.com/projects/watermark-input-plugin



ClockPick (***): 입력상자에 시간을 선택해서 넣을 수 있다.
http://www.oakcitygraphics.com/jquery/clockpick/trunk/ClockPick.cfm


chart : JQuery를 이용한 차트
http://www.reach1to1.com/sandbox/jquery/jqchart/



달력
http://tedserbinski.com/jcalendar/index.html#demo



3D로테이션 : 글자들이 xy 좌표에서 3D효과로 회전함.
http://www.willjessup.com/sandbox/jquery/rotator/rotator.html


스크롤중 데이터가져오기 :
http://www.webresourcesdepot.com/dnspinger/
http://www.webresourcesdepot.com/load-content-while-scrolling-with-jquery/


Query Flash Plugin - Basic Example : flash 삽입 플러그인
http://jquery.lukelutman.com/plugins/flash/example-basic.html


jquery combobox demo : custom 콤보박스 ie 7.0으로 보면 깨져나온다.

http://jquery.sanchezsalvador.com/samples/example.htm


scrollable table : 테이블에 스크롤바가 붙어있다-_-;;
http://www.webtoolkit.info/demo/jquery/scrollable/demo.html



accordion-madness
http://www.learningjquery.com/2007/03/accordion-madness




jQuery Multimedia Portfolio
http://www.openstudio.fr/jquery/



체크박스 이동
http://sanisoft-demo.com/jquery/plugins/shiftcheckbox/demo.html


위지윅에디터
http://projects.bundleweb.com.ar/jWYSIWYG/


크랍
http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#crop


슬라이딩 퍼즐
http://www.bennadel.com/blog/1009-jQuery-Demo-Creating-A-Sliding-Image-Puzzle-Plug-In.htm



날짜픽업
http://kelvinluck.com/assets/jquery/datePicker/v2/demo/


레이팅
http://php.scripts.psu.edu/rja171/widgets/rating.php


JQuery Curvy Corners Demo page
http://blue-anvil.com/jquerycurvycorners/test.html




http://www.mind-projects.it/blog/jqzoom_v10



LavaLamp for jQuery lovers!
http://gmarwaha.com/blog/?cat=8



컬러
http://www.jnathanson.com/blog/client/jquery/heatcolor/index.cfm#examples




비쥬얼 쿼리
http://visualjquery.com/1.1.2.html



jQuery "Highlight" Demo
http://www.keyframesandcode.com/resources/javascript/jQuery/demos/highlight-demo.html





Hot Key Testing
http://jshotkeys.googlepages.com/test-static.html






accordion menu
http://www.i-marco.nl/weblog/jquery-accordion-menu-redux/



jQuery easyThumb
http://www.hverven.net/div/easyThumb/


갤러리
http://www.flyerstop.ca/ui/apps/gallery_advanced/



thickbox
http://jquery.com/demo/thickbox/



마우스휠 플러그인
http://www.ogonek.net/mousewheel/jquery-demo.html
http://www.ogonek.net/mousewheel/demo.html

휴먼메세지
http://binarybonsai.com/misc/humanmsg/




jQuery - LinkedSelect
http://www.msxhost.com/jquery/linked-selects/json/



jQuery &#187; iFrame Sizing
http://host.sonspring.com/iframe/


jQuery for Designers - Ajax Form Validation Example
http://jqueryfordesigners.com/demo/ajax-validation.php


폰트크기 바꾸기
http://www.lllcolor.com/jQuery/demo/demo01b.html


dimension
http://brandonaaron.net/docs/dimensions/#code-samples


portlet 데모
http://www.rymix.co.uk/jquery/d15/sortables2.html


FX데모
http://magalies.net/downloads/Jquery/Interface%20examples/demos/ifx.html#pulsate-fx


오픈윈도우
http://magalies.net/downloads/Jquery/Interface%20examples/demos/windows.html


JQuery tricks: using Greybox + form plugin for a modal dialog box
http://corky.net/dotan/programming/jquery.dialog/dialog-demo.html



FaceBoox style autosuggest with jQuery
http://web2ajax.fr/examples/facebook_searchengine/


Auto-Growing Textarea Demo
http://www.aclevercookie.com/demos/autogrow_textarea.html


jQuery Helper for Komodo Media CSS Star Rater (Redux)
http://www.m3nt0r.de/devel/raterDemo/


에디터
http://avidansoft.com/dsrte/



jQuery Keyboard Navigation Plugin
http://amountaintop.com/project/keynav/



http://jqueryfordesigners.com/demo/tabs.html


jQuery AccessKey Demo
http://methvin.com/jquery/jq-access.html


Semi-transparent rollover effect using jQuery
http://coderseye.com/files/demos/pngrollover/index.html


Revealing Photo Slider
http://css-tricks.com/examples/RevealingPhotoSlider/


Simple jQuery form validation
http://www.willjessup.com/sandbox/jquery/form_validator/form_validate.html


after callback demo
http://jsdesigning.com/gal/gal.php?top=10&id_pic=9&id_album=2



갤러리
http://devkick.com/lab/galleria/demo_01.htm#img/ladybug.jpg



SWF Upload
http://www.alexandremagno.net/blog/wp-content/uploads/swfupload/index.htm

jQuery gradient - Visual Test
http://brandonaaron.net/jquery/plugins/gradient/test/


tEditable :: In place table editing for jQuery
http://joshhundley.com/teditable/index.html









sort
http://interface.eyecon.ro/demos/sort.html







































http://geeknation.blinklist.com/tag/jQuery/




http://www.nalanta.com/node/7
http://www.noupe.com/jquery/50-amazing-jquery-examples-part1.html
http://www.blinklist.com/mungkey/jquery/






http://geekswithblogs.net/AzamSharp/archive/2008/02/21/119882.aspx


http://www.learningjquery.com/2006/12/multiple-fancy-drop-caps

http://www.trirand.com/blog/?page_id=5



http://people.iola.dk/olau/flot/examples/selection.html(챠 트 선택)

http://www.mootools.net/dragdrop/

http://plugins.jquery.com/project/Plugins/category/21




http://mohamedshaiful.googlepages.com/add_remove_form.htm

http://www.chazzuka.com/Portofolio/


http://dev.jquery.com/view/tags/ui/1.5b2/demos/ui.sortable.html






http://hooney.net/code/2007/08/UnobtrusiveTabNav/tabNav03.html

http://jqueryfordesigners.com/coda-slider-effect/

http://benjaminsterling.com/jquery-jqgalview-photo-gallery/

http://www.mind-projects.it/blog/jqzoom_v10


http://www.reach1to1.com/sandbox/jquery/jqchart/

http://jquery.lukelutman.com/plugins/flash/

http://leandrovieira.com/projects/jquery/lightbox/

http://marcgrabanski.com/code/ui-datepicker/


http://www.noupe.com/ajax/37-more-shocking-jquery-plugins.html

http://www.webdesignerwall.com/demo/jquery/


http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html


http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery


http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html


http://jquery.glyphix.com/


http://www.balupton.com/sandbox/jquery_lightbox/


챠트
http://www.filamentgroup.com/lab/creating_accessible_charts_using_canvas_and_jquery/


http://sorgalla.com/projects/jcarousel/

http://designreviver.com/tutorials/jquery-examples-horizontal-accordion

http://host.sonspring.com/portlets/

http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/

http://www.digital-web.com/extras/jquery_crash_course/



http://www.blinklist.com/codearachnid/jquery/

http://drupalmodules.com/module/image-enhanced-scaling

http://www.ajaxdaddy.com/store



http://www.ajaxrain.com/tag.php?tag=image&page=2(모음)
http://www.spicyexpress.net/general/jquerry-at-it-best- downloadable-jquerry-plugins-and-widgets-for-you-2/(예제모음)

http://mike.teczno.com/giant/pan/(pan)


출처 : 웃대가리블로그 - [추천]Jquery 링크 모음 - http://urin79.com/zb/utdae/783559
by 디케

http://defle.nayana.com/board/view.php?bbs_code=goodsite&ss[cat]=122&bd_num=1042
by Anna 안나 2012. 1. 17. 12:27
Lazy Load is a jQuery plugin written in JavaScript. It delays loading of images in long web pages. Images outside of viewport (visible part of web page) wont be loaded before user scrolls to them. This is opposite of image preloading.

Using Lazy Load on long web pages containing many large images makes the page load faster. Browser will be in ready state after loading visible images. In some cases it can also help to reduce server load.

Lazy Load is inspired by YUI ImageLoader Utility by Matt Mlinac.

For those in hurry there are several demo pages available: basic options, with fadein effect, noscript fallback, horizontal scrolling, horizontal scrolling inside container, vertical scrolling inside container, page with gazillion images and load images using timeout.

When checking the demos clear browser cache between each request. You can check what is actually loaded with developers console (Chrome and Safari), FireBug (Firefox) or HTTPHeaders (IE).

How to Use?

Lazy Load depends on jQuery. Include them both in end of your HTML code:

<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.lazyload.js" type="text/javascript"></script>

You must alter your HTML code. Put the place holder image into src attribute. Demo pages use 1×1 pixel grey gif. URL of the real image must be put into data-original attribute. It is good idea to give Lazy Loaded image a specific class. This way you can easily control which images plugin is binded to.

<img class="lazy" src="img/grey.gif" data-original="img/example.jpg"  width="640" heigh="480">

then in your code do:

$("img.lazy").lazyload();

This causes all images of class lazy to be lazy loaded. See the basic options demo.

Fallback for Non JavaScript Browsers

Practically everyone has JavaScript enabled. However there are cases when you want to show the real images even if request come from client which does not support JavaScript. Google crawlers are one good candidate. Google crawlers do not execute JavaScript but also seem to ignore noscript content. To degrade gracefully when JavaScript is not enabled you can include the real image tag inside <noscript> block.

<img class="lazy" src="img/grey.gif" data-original="img/example.jpg"  width="640" heigh="480">
<noscript><img src="img/example.jpg" width="640" heigh="480"></noscript>

To prevent both placeholder and the real image showing at the same time hide the place holder with css.

.lazy {
  display: none;
}

For JavaScript enabled browser you must enable displaying the placeholders when documents loads. This can be done at the same time when initializing the plugin.

$("img.lazy").show().lazyload();

All this is optional can should be done only if you want the plugin to degrade gracefully.

Setting Sensitivity

By default images are loaded when they appear on the screen. If you want images to load earlier you can set threshold parameter. Setting threshold to 200 causes image to load 200 pixels before it is visible.

$("img.lazy").lazyload({ threshold : 200 });

Event to Trigger Loading

Event can be any jQuery event such as click or mouseover. You can also use your own custom events such as sporty or foobar. Default is to wait until user scrolls down and image appears on the window. To prevent all images to load until their placeholder image is clicked you could do:

$("img.lazy").lazyload({ 
    event : "click"
});

Using Effects

By default plugin waits for image to fully load and calls show() to show it. You can use any effect you want. Following code uses fadeIn effect. Check how it works at effect demo page.

$("img.lazy").lazyload({ 
    effect : "fadeIn"
});

Images Inside Container

You can also use plugin for images inside scrolling container, such as div with scrollbar. Just pass the container as jQuery object. There is a demo for horizontal and vertical container.

#container {
    height: 600px;
    overflow: scroll;
}
$("img.lazy").lazyload({         
     container: $("#container")
});

When Images Are Not Sequential

After scrolling page Lazy Load loops though unloaded images. In loop it checks if image has become visible. By default loop is stopped when first image below the fold (not visible) is found. This is based on following assumption. Order of images on page is same as order of images in HTML code. With some layouts assumption this might be wrong. You can control loading behaviour with failure_limit option.

$("img.lazy").lazyload({ 
    failure_limit : 10
});

Setting failure_limit to 10 causes plugin to stop searching for images to load after finding 10 images below the fold. If you have a funky layout set this number to something high.

Delayed Loading of Images

Not exactly feature of Lazy Load but it is also possible to delay loading of images. Following code waits for page to finish loading (not only HTML but also any visible images). Five seconds after page is finished, below the fold images are loaded automatically. You can also check the delayed loading demo.

$(function() {          
    $("img:below-the-fold").lazyload({
        event : "sporty"
    });
});
$(window).bind("load", function() { 
    var timeout = setTimeout(function() {$("img.lazy").trigger("sporty")}, 5000);
}); 

Load Invisible Images

There are cases when you have invisible images. For example when using plugin in together with a large filterable list of items that can have their visibility state changed dynamically. To improve performance Lazy Load ignores hidden images by default. If you want to load hidden images set skip_invisible to false.

$("img.lazy").lazyload({ 
    skip_invisible : false
});

Download

Latest source or minified. Plugin has been tested with Safari 5.1, Firefox 3.6, Firefox 7.0, Firefox 8.0 on OSX and Firefox 3.0, Chrome 14 and IE 8 on Windows and Safari 5.1 on iOS 5 both iPhone and iPad.

When asking a question please include an URL to example page where the problem occurs. If you have longer code examples please use pastie.org





http://www.appelsiini.net/projects/lazyload
by Anna 안나 2012. 1. 16. 14:50
In October last year i wrote a post with a Floating back to top button.Since then i have wanted to cover a more up to date back to top modern button.The popular option when it comes to scroll top buttons is to use jQuery for two reasons.Firstly with jQuery you can have the button hidden until the page is scrolled, secondly when clicked the page scrolls smoothly to the top instead of the direct jump a regular link would have.So that's exactly what i have in this tutorial.We will add a button that will only be visible when the reader starts scrolling and then when they click it the page slowly scrolls up easing into position at the top.For the button itself we us a sprite to create a hover effect sprites also keep the page load time down.

I recently started a blog in which i want to list the Best Design and Blogging posts, codes, tutorials and resources.On that blog i have the back to top button we cover in this post so we will use that as the demo.When you land on the page start to scroll and you will see the button in the bottom right corner.

Design and Blog

Looks and Works great lets add it to your blog.Credits to Matt Verone, Wordpress users can use the plugin here.

Smooth Scroll jQuery Back To Top Button


Remember Always Back Up Your Template Before You Make Changes - How To Back Up A Blogger Template

Step 1. In Your Blogger Dashboard Click Design > Edit Html

Design Edit Html Blogger

Step 2. Find the following piece of code in your blogs Html : (Click Ctrl and F for a search bar to help find the code - How To Find Code In Blogger Template Template)

]]></b:skin>

Step 3. Copy and Paste the following code Directly Above / Before ]]></b:skin>


#toTop {
display:none;
text-decoration:none;
position:fixed;
bottom:10px;
right:10px;
overflow:hidden;
width:51px;
height:51px;
border:none;
text-indent:-999px;
background:url(http://3.bp.blogspot.com/-ZaFk139_d7Q/ThWy56hQTtI/AAAAAAAAEtc/i7lYDE7NQRY/s1600/ui.totop.png) no-repeat left top;
}
#toTopHover {
background:url(http://3.bp.blogspot.com/-ZaFk139_d7Q/ThWy56hQTtI/AAAAAAAAEtc/i7lYDE7NQRY/s1600/ui.totop.png) no-repeat left -51px;
width:51px;
height:51px;
display:block;
overflow:hidden;
float:left;
opacity: 0;
-moz-opacity: 0;
filter:alpha(opacity=0);
}
#toTop:active, #toTop:focus {
outline:none;
}

Note - To move the button to the left of your blog change right:10px; to left:10px; .

Step 4. Find the following piece of code in your blogs Html : (Click Ctrl and F for a search bar to help find the code - How To Find Code In Blogger Template Template)

</head>

Step 5. Now Copy And Paste This Code Directly Above / Before </head>

Note - If you have previously added jQuery script to your template you can leave out the line in green.
<script src='http://code.jquery.com/jquery-1.6.1.min.js' type='text/javascript'/>
<script src='http://suyb.googlecode.com/files/jquery.easing.1.3.js' type='text/javascript'/>
<script src='http://suyb.googlecode.com/files/jquery.ui.totop.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function() {
/*
var defaults = {
containerID: &#39;moccaUItoTop&#39;, // fading element id
containerHoverClass: &#39;moccaUIhover&#39;, // fading element hover class
scrollSpeed: 1200,
easingType: &#39;linear&#39;
};
*/

$().UItoTop({ easingType: &#39;easeOutQuart&#39; });

});
</script>

Step 6. Save your template.

That's it, You can check out your new back to top button after you Comment on and Share this post ! Make sure to check out more of our jQuery Tutorials and Blogger Tips.

Drop Your Comments And Questions Below.



http://www.spiceupyourblog.com/2011/07/jquery-scroll-to-top-button-smooth.html
by Anna 안나 2012. 1. 16. 14:45

This jQuery plugin allows you to set a number of sidebar or floating boxes that follow the user down the page as they scroll. The plugin uses absolute positioning calculated from the original css and offset to either the closest positioned parent or to the document. The plugin has been tested in IE6-9 and all the other major browsers.

The JavaScript (jQuery)

Below is the code for the plugin, to download the code with examples use the link above.

(function($){

  var settings = {
        speed: 350 //animation duration
      , easing: "linear" //use easing plugin for more options
      , padding: 10
      , constrain: false
    }
    , $window = $(window)
    , stickyboxes = []
    , methods = {

          init:function(opts){
            settings = $.extend(settings,opts);
            return this.each(function () {
              var $this = $(this);
              setPosition($this);
              stickyboxes[stickyboxes.length] = $this;
              moveIntoView();
            });
          }

        , remove:function(){
            return this.each(function () {
              var sticky = this;
              $.each(stickyboxes, function (i, $sb) {
                if($sb.get(0) === sticky){
                reset(null, $sb);
                stickyboxes.splice(i, 1);
                return false;
                }
              });
            });
          }

        , destroy: function () {
            $.each(stickyboxes, function (i, $sb) {
              reset(null, $sb);
            });
            stickyboxes=[];
            $window.unbind("scroll", moveIntoView);
            $window.unbind("resize", reset);
            return this;
          }

      };


  var moveIntoView = function () {
    $.each(stickyboxes, function (i, $sb) {
      var $this = $sb
        , data = $this.data("stickySB");
      if (data) {
        var sTop = $window.scrollTop() - data.offs.top
          , currOffs = $this.offset()
          , origTop = data.orig.offset.top - data.offs.top
          , animTo = origTop;
        //scrolled down out of view
        if (origTop < sTop) {
//make sure to stop inside parent
          if ((sTop + settings.padding) > data.offs.bottom)
            animTo = data.offs.bottom;
          else animTo = sTop + settings.padding;
        }
        $this
          .stop()
          .animate(
              {top: animTo}
            , settings.speed
            , settings.easing
        );
      }
    });
  }

  var setPosition = function ($sb) {
    if ($sb) {
      var $this = $sb
        , $parent = $this.parent()
        , parentOffs = $parent.offset()
        , currOff = $this.offset()
        , data = $this.data("stickySB");
      if (!data) {
        data = {
            offs: {} // our parents offset
          , orig: { // cache for original css
                top: $this.css("top")
              , left: $this.css("left")
              , position: $this.css("position")
              , marginTop: $this.css("marginTop")
              , marginLeft: $this.css("marginLeft")
              , offset: $this.offset()
            }
        }
      }
      //go up the tree until we find an elem to position from
      while (parentOffs && "top" in parentOffs
        && $parent.css("position") == "static") {
        $parent = $parent.parent();
        parentOffs = $parent.offset();
      }
      if (parentOffs) { // found a postioned ancestor
        var padBtm = parseInt($parent.css("paddingBottom"));
        padBtm = isNaN(padBtm) ? 0 : padBtm;
        data.offs = parentOffs;
        data.offs.bottom = settings.constrain ?
          Math.abs(($parent.innerHeight() - padBtm) - $this.outerHeight()) :
          $(document).height();
      }
      else data.offs = { // went to far set to doc
          top: 0
        , left: 0
        , bottom: $(document).height()
      };
      $this.css({
          position: "absolute"
        , top: Math.floor(currOff.top - data.offs.top) + "px"
        , left: Math.floor(currOff.left - data.offs.left) + "px"
        , margin: 0
        , width: $this.width()
      }).data("stickySB", data);
    }
  }

  var reset = function (ev, $toReset) {
    var stickies = stickyboxes;
    if ($toReset) { // just resetting selected items
      stickies = [$toReset];
    }
    $.each(stickies, function(i, $sb) {
      var data = $sb.data("stickySB");
      if (data) {
        $sb.css({
            position: data.orig.position
          , marginTop: data.orig.marginTop
          , marginLeft: data.orig.marginLeft
          , left: data.orig.left
          , top: data.orig.top
        });
        if (!$toReset) { // just resetting
          setPosition($sb);
          moveIntoView();
        }
      }
    });
  }

  $window.bind("scroll", moveIntoView);
  $window.bind("resize", reset);

  $.fn.stickySidebar = function (method) {

    if (methods[method]) {
      return methods[method].apply(
          this
        , Array.prototype.slice.call(arguments, 1)
      );
    } else if (!method || typeof method == "object") {
      return methods.init.apply(this, arguments);
    }

  }

})(jQuery);

Usage

The plugin can be used for single or multiple boxes as shown in the examples below

A Single sticky sidebar

1
2
3
4
5
6
7
8
9
10
11
12
13
<div id="main">
  <h2>Product catalogue</h2>
  <ul id="products">
      [...]
  </ul>
</div>
<div id="side">
   <div id="basket">
     <h3>Your basket</h3>
     <p>Total: <strong>&pound;455.00</strong></p>
     <span id="items">4</span>
   </div>
</div>

For the above snippet of a HTML page we can use the following to enable the product basket as a sticky sidebar with the default options.

1
$('#basket').stickySidebar();

Multiple sticky boxes

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div id="left">
  <h2>Left column</h2>
  <ol id="navbox" class="stickybox">
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Contact</a></li>
  </ol>
</div>
<div id="middle"></div>
  <div id="right">
    <h2>Right column</h2>
    <div id="basket" class="stickybox">
      <h3>Your basket</h3>
      <p>Total: <strong>&pound;455.00</strong></p>
      <span id="items">4</span>
    </div>
</div>

For the above example we can use the below to set the navbox and basket boxes to both be sticky sidebars with the same options.

1
$('.stickbox').stickySidebar({speed: 400, padding: 30, constrain: true})

Options

The Sticky Sidebar plugin has four options:

  1. speed – how long the animation of the box should take in milliseconds (default = 250)
  2. easing – what type of easing to use for the animation (default = “linear”)
  3. padding – how many pixels to pad the element from the top of the window (default = 10)
  4. constrain – if true stops sticky scrolling out of parent

Methods

The Sticky Sidebar plugin has two methods:

  1. remove – removes the sticky selected sticky sidebars and resets to original position
  2. destroy – removes and resets all sticky sidebars and removes event listeners


http://www.profilepicture.co.uk/tutorials/sticky-sidebar-jquery-plugin/

by Anna 안나 2012. 1. 16. 14:44

영어지만 잘 설명된 글이 있다 : position:fixed for internet explorer

원리 설명이 잘 돼 있는 듯하다.

그리고 관련 토론은 여기서 볼 수 있다 : 떠다니는 레이어, 그 표준은?

아래는 내가 구현한 것이다.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$(document).ready(function(){
    var currentPosition = parseInt($(".float").css("top"));
    $(window).scroll(function() {
        var position = $(window).scrollTop(); // 현재 스크롤바의 위치값을 반환합니다.
        if(position>600){
            if($.browser.msie && $.browser.version < 7){
                $(".float").stop().animate({"top":position+currentPosition-600+"px"},1000);
            }else{
                $(".float").css({'position':'fixed', 'top':'20px'});
            }
        }else{
            $('.float').attr('style','');
        }
    });
});

위 코드는 어느 정도까지는 fixed돼 있지 않다가 스크롤을 좀 내리면 fixed 시키는 코드다. 이를 위해서 꼭 알아야 할 매서드는 scrollTop() 이다. jQuery의 매서드다.

$(window).scrollTop() : 현재 스크롤바의 위치를 반환한다. 정수값을 반환하게 된다.

$(window).scroll(function(){ /*함수 구현부*/ }) : 이 코드는 웹브라우저가 스크롤될 때 실행할 함수를 써 주는 부분이다. 위에서 보면 알겠지만 모든 함수 구현부가 바로 이 안에 인수로 들어가 있다.

function(){/*함수 구현부*/} 형식의 인수는 익명함수라고 한다. 특별한 함수 이름 없이 즉각 함수를 인자값처럼 넘길 수 있는 방식이다. 자바스크립트의 특징이라고 알고 있다.

위 코드가 jQuery쪽 코드고, HTML 쪽에는

?
1
<div class="float">나는 떠다니는 레이어</div>

이런 놈을 넣어 주면 되겠다.

msie 버전 6 이하에서는 position: fixed를 사용할 수 없기 때문에 jQuery의 animate 매서드를 이용해서 처리한다. 1000이라고 써 있는 부분은 동작이 일어나는 시간이다. 1000이 1초다. 이 시간을 늘리면 느리게 움직이고, 줄이면 빠르게 움직이다. 0으로 하면 순간이동을 하는데, 좋지가 않다.

position이 600보다 작을 때는 $('.float').attr('style','') 이라고 코드를 써 놨는데, 요소 스타일을 제거해 버리는 코드다. 그러면 jQuery를 이용해 임의로 매긴 스타일이 모두 사라진다. 단, 이를 위해서는 기본 스타일은 모두 css 파일에 담아 두어야 한다. 그렇지 않으면 기본 스타일로 박아 놓은 것도 함께 날아갈 테니 말이다.

시간이 없어서 친절한 설명을 하지 못해 아쉽다. 하지만 코드를 잘 분석하면 충분히 이해할 수 있을 거라 생각한다.


http://mytory.co.kr/archives/761

by Anna 안나 2012. 1. 16. 14:43
트윗을 보던 중, 쿠나님이 티스토리 블로그에 아약스를 적용하고 있다는 것을 발견했다.

음..

이란 생각과 함께 바로 가서 구경!


읭..

귀찮아서 하기 싫었던건데 막상 보니까 무진장 하고 싶어졌다. ㅋㅋㅋ


그래서 바로 적용 시도.




일단 몇가지 문제가 있다.

1. SyntaxHighlight와 FootNote 등 BLUEnLIVE 님이 적용해두신 스크립트가 먹지 않는다.
뭐 해결하려면 하겠는데 일단 당장은 귀찮으니 패스.
툴팁은 일단 여기를 참고해보도록 하자..

2. TC용 플러그인은 해당 플러그인을 직접 수정해야한다.

3. 카테고리.. [...]
이.. 이건.. 답이 없는듯;;




텍스트큐브 1.8.4엔 기본적으로 jQuery 1.4가 들어간다.
그러니 scrollTo 파일만 넣도록 하자.

scrollTo.js는 여기에서 받을 수 있다.

아 깜빡한게 있군.
로딩 인디케이터는 여기에서 직접 만들 수 있다.



그리고 아래 소스를 head 태그 안이든 적당한 곳에 넣어둔다.

<!-- deVbug.me Ajax -->
<script type="text/javascript" src="/resources/script/jquery/jquery.scrollTo-1.4.2-min.js"></script>
<script language="javascript">
function LoadPage(url)
{
	if (url == "" || typeof url == "undefined" || url == null) return;

	jQuery.scrollTo( 0, 800, {queue:true} );

	jQuery("#content").html("<center><img src='./ajax-loader.gif'></center>");

	jQuery.get(url, function(data) {
		jQuery('#content').html(jQuery(data).find('#content').html());

		jQuery("div.tagTrail a").click(function() {
			LoadPage(this.href); return false;
		});

		var dest_id = url.substring(url.indexOf("#"));
		jQuery.scrollTo( jQuery(dest_id), 800, {queue:true} );
	});
}
</script>







텍스트큐브나 티스토리나 이런 부분은 거의 같아서 쿠나님의 글과 별반 다를게 없다.




주요 a 태그에 다음 내용을 추가한다.

 onclick="LoadPage(this.href); return false;"




블로그 제목, 상단 메뉴 등과 같은 곳이겠지.

이후 스킨 파일에서 href로 검색해서 나오는 곳을 확인하며 일일히 추가해주면 된다.
특히 새로 올라온 글 부분 등.


Paging 부분은 다음처럼 한다.


<s_paging>
	<div id="paging">
		<a  title="이전" class="" id="prevPage" onclick="LoadPage(this.href); return false;">« Prev </a> :
		<s_paging_rep> <a  class="num" onclick="LoadPage(this.href); return false;"></a> : </s_paging_rep>
		<a  title="다음" class="" id="nextPage" onclick="LoadPage(this.href); return false;">Next »</a> 
	</div>
</s_paging>



역시 다를게 없군.




사이드바에서 검색 부분은 아래처럼 하자.


<!-- 검색 -->
<div id="searchBox">
	<s_search>
		<input type="text" name="" value="" onkeypress="if (event.keyCode == 13) { LoadPage('/search/'+this.value); return false; }"/>
		<input value="검색" type="button" onclick="LoadPage('/search/'+document.getElementsByName('')[0].value); return false;" class="submit"/>
	</s_search>
</div>





새로 등록된 댓글, 트랙백 등과 같은 곳에도 똑같이 집어넣으면 알아서 이동하고 스크롤도 된다.




이걸 플러그인 형태로 만들어야 했을텐데 이미 귀찮아서 이따위로 만들어버렸으니.. 떫..

에효 암튼 무엇보다 문법 강조 플러그인이나 제대로 작동하게 조만간 우선 작업해야겠다.
아주 개판으로 나오겠지. ㅠㅠ



아 그리고, 이 외에 수정한 플러그인은, 나같은 경우
FootNote, JP_ArchiveSelectboxTT, MT_Meta_RecentPS_Default 이고..
JP_ShortenEntryContentsTT 는 수정해도 제대로 작동을 안 하네..

http://devbug.me/561
by Anna 안나 2012. 1. 16. 14:41
간단히 말해서 페이지 갱신을 하지 않고 내용 갱신을 하는 것인데 (아니 말이 이상하네) ... 제일 좋은 예제는 http://www.happyfri.com/blog/ 블로그를 참조하시면 됩니다 (사실 이거 때문에 전 끌려서.. 에헤헤)

별도로 소개할 수 있는 내용이 없으니 스샷은 없고, 저도 적용은 더욱 심화하는것보다 이정도에서 끝내려고 합니다(위젯 덕지덕지인 브롤그에 쓰시면 좋을것 같네요). 그런고로, 일반적 스킨에서 적용할 수 있는 적용 방법을 간단히 적어놓고 ... 그렇게 오늘의 삽질, 종료! [절대 학생회의 일존이라던가를 따라하지 않았습니다]

1. jQuery 프레임워크 와 scrollTo 확장 플러그인 자바스크립트 파일 및 로딩 시에 쓰일 이미지를 티스토리에 올려봅시다. 귀찮으니까 제가 손수 준비한 파일을 쓰시면........ 되겠지요. (물론 scrollTo의 저작권은 여기에, jQuery의 저작권은 여기에, 로딩 이미지는 여기에 저작권이 있음을 알립니다아)


2. <head>~</head> 사이의 적당한 곳에 이 코드를 넣습니다.
<!-- AJAX Part -->
<script src="./images/jquery-1.4.2.min.js" language="javascript"></script>
<script src="./images/jquery.scrollTo-min.js" language="javascript"></script>
<script language="javascript">
function loadPage(url) {
$("#content").html("<center><img src='./images/ajax-loader.gif'></center>");
$.scrollTo( $('#content'), 800 );
var dest_url = url.substring(0, url.indexOf("#"));
if (dest_url == "") dest_url = url;
$.get(dest_url, function(data) {
var obj = $(data);
var ihtml = obj.find("#content").html();
$("#content").html(ihtml);

var dest_id = url.substring(url.indexOf("#"));
$.scrollTo( $(dest_id), 800, {queue:true} );
});
}

function loadPage_paging(paging_url) {
var url = paging_url.href;
loadPage(url);
}
</script>


3. 보시면 아시겠지만, loadPage라는 함수를 이용해서 사용이 가능합니다.
(1) 검색 위젯 부분
<s_search>
<input type="text" name="[ ##_search_name_## ]" value="[ ##_search_text_## ]" onkeypress="if (event.keyCode == 13) { loadPage('/search/' + document.getElementsByName('search')[0].value.replaceAll('%', '%25')); }"/>
<input value="search" type="button" onclick="loadPage('/search/' + document.getElementsByName('search')[0].value.replaceAll('%', '%25'));" class="submit"/>
</s_search>

(2) 최근 포스트 위젯 부분
<a href="[ ##_rctps_rep_link_## ]" onclick="loadPage('[ ##_rctps_rep_link_## ]'); return false;"> [ ##_rctps_rep_title_## ]</a>
*deVbug님이 내주신 좋은 코드 덕택에 최근 덧글/최근 트랙백 모듈에도 사용가능합니다! 해당 코드는 위에 새로 넣어놓은 상태이고요, deVbug님, 감사합니다~! 

(3) 방명록 같은 메뉴 부분
<a href="[ ##_guestbook_link_## ]" onclick="loadPage('[ ##_guestbook_link_## ]'); return false;">guestbook</a> 

사용법은 보시면 아시겠지만 간단하게 onclick="loadPage('[이동할 URL]') return false;"이면 된다는 것을 알 수 있습니다.

또, 그리고 만들어 놓은 추가 함수로 이렇게 사용이 가능합니다.
(4) 하단의 페이징 부분
<s_paging>
<div class="paging">
<a [ ##_prev_page_## ] onclick="loadPage_paging(this); return false;" class="[ ##_no_more_prev_## ]">&lt;&lt; previous </a>
<span class="numbox">
<s_paging_rep>
<a [ ##_paging_rep_link_## ] onclick='loadPage_paging(this); return false;' class="num"> [ ##_paging_rep_link_num_## ]</a>
</s_paging_rep>
</span>
<a [ ##_next_page_## ] onclick="loadPage_paging(this); return false;" class="[ ##_no_more_next_## ]">next &gt;&gt;</a>
</div>
</s_paging>


물론 해보고싶으신 분들만 백업 철저히 해놓고 마음대로 하세요.
난 옛날처럼 시간이 남아나지 않으니까 A/S는 직접 보고서 해줄 분들만 해줄꺼에요.

http://kuna.wo.tc/1220
by Anna 안나 2012. 1. 16. 14:40
이전에 문제가 되었던 UIScrollView에서의 page detecting을 해결하기 위해 구글링 도중에 page의 lazy loading을 고민하는 사람이 많다는 것을 알게 되었다. 이는 지금 나같이 너댓장의 이미지를 로딩하는 데에는 큰 문제가 되지 않지만 수십 수백장의 이미지 혹은 다른 그 어떤 것을 로딩하기 에는 좀 문제가 된다.
원래대로라면 하나의 scrollview에 수십 수백장의 imageview를 addSubview를 이용해 추가하는 것인데 당연히 퍼포먼스나 메모리 관리 측면에서 문제가 안될리 없다. 그래서 많은 image gallery 어플이 하는 방식인 현재 보이는 view와 그 이전/이후의 view만을 로딩하는 lazy loading 방식에 대해 찾아 보다가 stack overflow에서 아래의 sample code를 발견했다.
먼저 interface 부분.
01.@interface UntitledViewController : UIViewController<UIScrollViewDelegate> {
02.@private
03.UIScrollView *_scrollView;
04. 
05.NSArray *_objects;
06. 
07.UILabel *_detailLabel1;
08.UILabel *_detailLabel2;
09.UILabel *_detailLabel3;
10.}
11. 
12.- (void)replaceHiddenLabels;
13.- (void)displayLabelsAroundIndex:(NSInteger)index;
14. 
15.@end

그리고 실제 구현 부분.
001.@implementation UntitledViewController
002. 
003.- (void)dealloc
004.{
005.[_objects release];
006.[_scrollView release];
007.[_detailLabel1 release];
008.[_detailLabel2 release];
009.[_detailLabel3 release];
010.[super dealloc];
011.}
012. 
013.- (void)viewDidLoad
014.{
015.[super viewDidLoad];
016. 
017._objects = [[NSArray alloc] initWithObjects:@"first", @"second", @"third",
018.@"fourth", @"fifth", @"sixth", @"seventh", @"eight", @"ninth", @"tenth", nil];
019. 
020._scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 460.0)];
021._scrollView.contentSize = CGSizeMake(320.0 * [_objects count], 460.0);
022._scrollView.showsVerticalScrollIndicator = NO;
023._scrollView.showsHorizontalScrollIndicator = YES;
024._scrollView.alwaysBounceHorizontal = YES;
025._scrollView.alwaysBounceVertical = NO;
026._scrollView.pagingEnabled = YES;
027._scrollView.delegate = self;
028. 
029._detailLabel1 = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 460.0)];
030._detailLabel1.textAlignment = UITextAlignmentCenter;
031._detailLabel1.font = [UIFont boldSystemFontOfSize:30.0];
032._detailLabel2 = [[UILabel alloc] initWithFrame:CGRectMake(320.0, 0.0, 320.0, 460.0)];
033._detailLabel2.textAlignment = UITextAlignmentCenter;
034._detailLabel2.font = [UIFont boldSystemFontOfSize:30.0];
035._detailLabel3 = [[UILabel alloc] initWithFrame:CGRectMake(640.0, 0.0, 320.0, 460.0)];
036._detailLabel3.textAlignment = UITextAlignmentCenter;
037._detailLabel3.font = [UIFont boldSystemFontOfSize:30.0];
038. 
039.// We are going to show all the contents of the _objects array
040.// using only these three UILabel instances, making them jump
041.// right and left, replacing them as required:
042.[_scrollView addSubview:_detailLabel1];
043.[_scrollView addSubview:_detailLabel2];
044.[_scrollView addSubview:_detailLabel3];
045. 
046.[self.view addSubview:_scrollView];
047.}
048. 
049.- (void)viewDidAppear:(BOOL)animated
050.{
051.[super viewDidAppear:animated];
052.[_scrollView flashScrollIndicators];
053.}
054. 
055.- (void)viewWillAppear:(BOOL)animated
056.{
057.[super viewWillAppear:animated];
058.[self displayLabelsAroundIndex:0];
059.}
060. 
061.- (void)didReceiveMemoryWarning
062.{
063.// Here you could release the data source, but make sure
064.// you rebuild it in a lazy-loading way as soon as you need it again...
065.[super didReceiveMemoryWarning];
066.}
067. 
068.#pragma mark -
069.#pragma mark UIScrollViewDelegate methods
070. 
071.- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
072.{
073.// Do some initialization here, before the scroll view starts moving!
074.}
075. 
076.- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
077.{
078.[self replaceHiddenLabels];
079.}
080. 
081.- (void)displayLabelsAroundIndex:(NSInteger)index
082.{
083.NSInteger count = [_objects count];
084.if (index >= 0 && index < count)
085.{
086.NSString *text = [_objects objectAtIndex:index];
087._detailLabel1.frame = CGRectMake(320.0 * index, 0.0, 320.0, 460.0);
088._detailLabel1.text = text;
089.[_scrollView scrollRectToVisible:CGRectMake(320.0 * index, 0.0, 320.0, 460.0) animated:NO];
090. 
091.if (index < (count - 1))
092.{
093.text = [_objects objectAtIndex:(index + 1)];
094._detailLabel2.frame = CGRectMake(320.0 * (index + 1), 0.0, 320.0, 460.0);
095._detailLabel2.text = text;
096.}
097. 
098.if (index > 0)
099.{
100.text = [_objects objectAtIndex:(index - 1)];
101._detailLabel3.frame = CGRectMake(320.0 * (index - 1), 0.0, 320.0, 460.0);
102._detailLabel3.text = text;
103.}
104.}
105.}
106. 
107.- (void)replaceHiddenLabels
108.{
109.static const double pageWidth = 320.0;
110.NSInteger currentIndex = ((_scrollView.contentOffset.x - pageWidth) / pageWidth) + 1;
111. 
112.UILabel *currentLabel = nil;
113.UILabel *previousLabel = nil;
114.UILabel *nextLabel = nil;
115. 
116.if (CGRectContainsPoint(_detailLabel1.frame, _scrollView.contentOffset))
117.{
118.currentLabel = _detailLabel1;
119.previousLabel = _detailLabel2;
120.nextLabel = _detailLabel3;
121.}
122.else if (CGRectContainsPoint(_detailLabel2.frame, _scrollView.contentOffset))
123.{
124.currentLabel = _detailLabel2;
125.previousLabel = _detailLabel1;
126.nextLabel = _detailLabel3;
127.}
128.else
129.{
130.currentLabel = _detailLabel3;
131.previousLabel = _detailLabel1;
132.nextLabel = _detailLabel2;
133.}
134. 
135.currentLabel.frame = CGRectMake(320.0 * currentIndex, 0.0, 320.0, 460.0);
136.currentLabel.text = [_objects objectAtIndex:currentIndex];
137. 
138.// Now move the other ones around
139.// and set them ready for the next scroll
140.if (currentIndex < [_objects count] - 1)
141.{
142.nextLabel.frame = CGRectMake(320.0 * (currentIndex + 1), 0.0, 320.0, 460.0);
143.nextLabel.text = [_objects objectAtIndex:(currentIndex + 1)];
144.}
145. 
146.if (currentIndex >= 1)
147.{
148.previousLabel.frame = CGRectMake(320.0 * (currentIndex - 1), 0.0, 320.0, 460.0);
149.previousLabel.text = [_objects objectAtIndex:(currentIndex - 1)];
150.}
151.}
152. 
153.@end

언더바를 많이 쓰고 대괄호 쓰는 방식이 C 프로그래밍 스타일이라 좀 별로지만 그대로 옮겨왔다. 수정하기 귀찮... 하여간 이 코드를 그대로 갖다 복사해도 동작한다. scrollview에 각각 label을 붙이는 subview를 만들어서 한번에 세개의 view를 로딩하고 스크롤할 때마다 다시 그 다음 것들을 loading하는 방식이다.

그리고 추가로 저 위의 scrollViewDidEndDecelerating 메소드 안에 아래의 코드를 갖다 붙이면 현재 보이는 page를 알아낼 수 있다.

1.int page = floor((_scrollView.contentOffset.x - PAGE_WIDTH / 2) / PAGE_WIDTH) + 1;

http://yangsae.tistory.com/38
by Anna 안나 2012. 1. 16. 14:39
mixsh나 twtkr등에서 스크를 마지막에 가면 자동으로 다음 글들을 불러 오게 하는 자료입니다.
JQUERY로 짜여졌고 간단합니다.

엄청나게 간단하네요....;;;

링크에 실제 배포하는 사이트 남겨 두었습니다.

샘플보기(스크롤해서 내려 보세요) :
http://www.webresourcesdepot.com/dnspinger/


구조설명:

컨텐츠 페이지 구조
<div class="wrdLatest" id=1>content</div>
<div class="wrdLatest" id=2>content</div>
<div id="lastPostsLoader"></div>

로딩중 이미지 보여주는 부분과 실제 데이터 가져오는 부분
function lastPostFunc()
{
    $('div#lastPostsLoader').html('<img src="bigLoader.gif">');
    $.post("scroll.asp?action=getLastPosts&lastID=" + $(".wrdLatest:last").attr("id"),   


    function(data){
        if (data != "") {
        $(".wrdLatest:last").after(data);           
        }
        $('div#lastPostsLoader').empty();
    });
};

스크롤 감지하는 부분
$(window).scroll(function(){
        if  ($(window).scrollTop() == $(document).height() - $(window).height()){
          lastPostFunc();
        }
});

http://dev.dayis.net/17
by Anna 안나 2012. 1. 16. 14:38
블로그를 한창 할때, 믹시의 스크롤 페이징을 보고서 어떻게 하는 건지 참 많이 궁금해 했던 기억이 납니다. 
졸립기도 하고 갑자기 스크롤 페이징이 생각 나서 검색해봤는데 쭌스님의 포스팅과 Raj Gorsia님의 포스팅을 찾게 되었습니다. 스크립트 라이브러리를 사용하지 않는다면 쭌스님의 글을 참고해서 작성하면 되겠고 JQuery를 사용한다면 Raj Gorsia님의 글을 거의 그대로 사용하면 되겠네요.

예전에 제가 감을 잡지 못 했던 부분은 아래 한줄입니다. ㅠ.ㅠ
if ($(window).scrollTop() == $(document).height() - $(window).height()) { 
또는
if(content.scrollTop < content.scrollHeight - 500)
이렇게 간단한데 말이죠... 

지금은 응용할만한 프로그램을 만들지 않지만 다음에 꼭 활용해서 만들어 보고 싶네요. 


 
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<title>JQuery</title>
<link rel="stylesheet" type="text/css" href="css.css"/>
<script type="text/javascript" src="jquery-1.6.min.js"></script>
<script type="text/javascript">
//<![CDATA[
var pageLoaded = 1; //현재 페이지

$(window).scroll( function() {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
pageLoaded = pageLoaded + 1; 
// ajax를 추가해서 목록을 받아온다
// alert(pageLoaded);
$('#main_content').append(
"main_content"+pageLoaded+"<br><br><br><br><br><br><br><br><br><br><br><br><br>");
}
});
//]]>
</script>

<style type="text/css">

</style>

</head>
<body>
<div id="top_menu">
<ul id="topUL">
<li class="to_home"><a href="/">HOME</a></li>
<li class="top_menu_li" id="login_btn">로그인</li>
<li class="top_menu_li"> | </li>
<li class="top_menu_li" id="join_btn">회원가입</li>
</ul>
</div>
<div id="wrap">
<div id="left_menu">left_menu</div>
<div id="content">
<div id="login_box">login_box</div>
<div id="join_box">join_box</div>
<div id="main_content">
main_content1<br><br><br><br><br><br><br><br><br><br><br><br><br>
main_content2<br><br><br><br><br><br><br><br><br><br><br><br><br>
main_content3<br><br><br><br><br><br><br><br><br><br><br><br><br>
main_content4<br><br><br><br><br><br><br><br><br><br><br><br><br>
main_content5<br><br><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<div id="right_menu">right_menu</div>
</div>
</body>
</html>

참조 1 : 스크롤 페이징(Scroll Paging, Continuous scrolling pattern)
참조 2 : Load Content While Scrolling With jQuery

http://www.rtong.net/1148
by Anna 안나 2012. 1. 16. 14:37
스크롤압박 주의!



PMP 프로그램 다운목록 v0.1(? 뭔 버젼이냐 갑자기?;;)

 

음..
아래 모든 링크가 PMP에서 실행 되는 것 입니다만..
아직 모든 링크를 걸지 못했습니다.
몇일 후에 다시 올릴 예정이며 중복은 거의 다 제외 했습니다.
그 때는 더욱더 링크가 늘어나 있겠지요..
열심히 노가다 했는데 설마 덧글이 없는건 아니겠지요?
그리고 내일(은 모르겠지만...)부터 프로그램을 대량 올릴 예정입니다.

================================================

이 게시글(은 피엠피인사이드저의 블로그맥시안 PMP 카페[arm] 에만 올렸습니다.)은 저가 아는 한도 내에서 PMP에 실행 가능한 프로그램을 전부 올린 그리고 올릴 게시글 입니다.
현재 이 게시글에는 플래시 게임은 추가되지 않았습니다.
퍼가실 때는 게시글에다가 꼭 덧글 부탁드립니다.[이 짓이 할 짓이 아니거든요..;;] // 퍼가실 땐 출처를 남겨주세요..(약 10~11 시간을 투자해서 만든 글입니다..)

이 글의 게시글은 저에게 저작권(?)이 있어요 -ㅅ-..

 

먼저 가볍게 미연시 먼저 올리겠습니다.

 

480x272, 800x480 공용 다운로드

 

http://daysari.tistory.com/40 <- ARM(QVGA, VGA)
http://www.pempi.co.kr/xe/2193583 <- MIPS(VGA)

 

http://cafe.naver.com/maxianm1t2/10703 <- 와플용 카논 입니다. qvga 용이며 화질은 떨어지지만 나쁘진 않습니다.(센스오프가 없어서 저는 센스오프만 받음)
http://cafe.naver.com/maxianm1t2/10740 <- 와플용 센스오프 당연 qvga용 이하동문.
http://cafe.naver.com/maxianm1t2/10742 <- 와플용 소레치루 qvga 용 이하동문 입니다.
http://cafe.naver.com/maxianm1t2/11023 <- 와플용 소레치루 bgm 입니다. 알집으로 압축푸세요 7z으로 하니까 용량이 5kb 뜨더군요 --;
http://cafe.naver.com/maxianpmp/118225 <- 와플용 소레치루 se 파일 입니다. 
VGA용은 다음에 시간이 되면 저의 블로그에 올리겠습니다..[센스오프는 안 보여서 제외

뭐.. 와플용은 여기까지 입니다.(다른건 죄다 일본어 판 이라.. 뭐;; 다른데 아는곳도 없고..)


다음은 온스크립터.

 

- 480x272

http://www.pempi.co.kr/xe/8183211 <- 월희 입니다.
http://www.pempi.co.kr/xe/8183271 <- Fate stay night realtanua
http://www.pempi.co.kr/xe/8219171 <- 풍차 마을의 멜로디
http://www.pempi.co.kr/xe/8400622 <- 사야의 노래
http://www.pempi.co.kr/xe/8400685 <- 변함없는 별하늘
http://www.pempi.co.kr/xe/8400718 <- LEAVEs
http://www.pempi.co.kr/xe/8400730 <- 나르키소스
http://www.pempi.co.kr/xe/8400760 <- 쓰르라미 울적에 - 문제편
http://www.pempi.co.kr/xe/8400811 <- 쓰르라미 울적에 - 해답편 1/2
http://www.pempi.co.kr/xe/8400996 <- 쓰르라미 울적에 - 해답편 2/2
 
- 800x480

http://www.pempi.co.kr/xe/8176241 <- Fate stay night Realtanua 1/2
http://www.pempi.co.kr/xe/8176307 <- Fate stay night Realtanua 2/2
 
http://www.pempi.co.kr/xe/?mid=embed_pds&category=&search_target=title&search_keyword=fate+stay+night <- 페이트 스테이 나이트
포인트 엄청 깨질 예정이 되겠습니다..
먼저 제일 앞에 있는 페이트 스테이 나이트 1-23을 전부 받으세요.
압축을 풀면서 오크주현님의 BGM 파일을 받습니다. 그리고 애니뇌광제님의 .nsa 파일 수정판을 받습니다.
페이트 스테이 나이트, BGM, .nsa 압축 파일을 다 풀었으면 페이트 스테이 나이트 폴더에다가 .nsa 파일과 bgm 파일을 덮어 씌웁니다.
http://www.pempi.co.kr/xe/3415669 <- 그리고 옆의 링크 '타르타르' 님이 수정하신 0.txt 파일을 받고 압축을 풀어 덮어 씌웁니다..[올리는거는 다른분이 해주실거라 믿음 // 퍽퍼퍽... 아악~!!
 
http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%EB%AF%B8%EC%A6%88%EC%9D%B4%EB%A1%9C<- 미즈이로 + 제일 위의 스크립트도 받으세요.

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%EC%9B%94%ED%9D%AC <- 월희 - 제일위에 있는 스즈미야님 자료를 받으세요. 3개분량.
└ http://www.pempi.co.kr/xe/8429206 - 월희月姬 아키하 타치에 수정파일

http://www.pempi.co.kr/xe/3421490 <- 월희 plus 입니다.

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%EA%B0%80%EC%9B%94%EC%8B%AD%EC%95%BC<- 가월십야 - 킴취님꺼와 선예꺼님의 스크립트도 받으세요.

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%ED%81%AC%EB%A1%9C%EC%8A%A4%EC%B1%84%EB%84%90<- 크로스채널 - 다받으세요.(번역기로 돌린거라.. 영;)

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%EC%9D%80%EC%83%89 <- 은색 - 저는 엘릭시어님꺼를 받았는데.. 포인트 덜 줄려면 합본판 받는게 났겟죠.(은색 4장 튕김 까지 넣은 것 같습니다.)

http://www.pempi.co.kr/xe/3420743 <- leaves - 이건 용량이 적네요.

http://www.pempi.co.kr/xe/3426954 <- 변함없는 별하늘 입니다.

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%EB%8F%99%EC%AA%BD <- 달은 동쪽으로 해는 서쪽으로
 
미연시가 뭐뭐 있었는지 까먹어 가;; 허억.. // 예전에 쓴 글이 참 -ㅅ-;
 
http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%EB%AC%B8%EC%A0%9C%ED%8E%B8 <- 쓰르라미 울적에 문제편 입니다. - 킴취님 꺼만 받으면 될꺼예요.

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%ED%95%B4%EB%8B%B5%ED%8E%B8 <- 해답편 - 다 받으세요.

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&category=&search_target=title&search_keyword=%EC%82%AC%EB%82%98%EB%9D%BC%EB%9D%BC<- 사나라라 입니다.

http://www.pempi.co.kr/xe/?_filter=search&mid=embed_pds&search_target=title&search_keyword=anise&page=1&division=-8156254 <- 동급생 2, anise 입니다.

http://www.pempi.co.kr/xe/?mid=embed_pds&category=&search_target=title&search_keyword=%EB%82%98%EB%A5%B4%ED%82%A4%EC%86%8C%EC%8A%A4<- 나르키소스 입니다.[이름이 잘 기억안나다가 드뎌 발견하넹] - 저는 고태형 님꺼를 받았습니다. 절취선 님껀 모름.

 

http://cafe.naver.com/maxianpmp/186207 <- 온스크립터 1/2(이건 arm만 가능)
http://cafe.naver.com/maxianpmp/186209 <- 온스크립터 2/2
http://www.pempi.co.kr/xe/2192537 <- 온스크립터 arm 오드아이(사용방법 설명이 ㄱ-.. 무슨 소린지 몰라 ㅠㅠ)

 

http://www.pempi.co.kr/xe/2192129 <- mips netforce
http://www.pempi.co.kr/xe/2192134 <- mips p2


음..
솔직히 미연시야 저가 전에 올린 글이 있으니까 커버가 가능하지만..
이제 프로그램.. 정말 최악이 될 것 같습니다.
과연 얼마나 많은 프로그램이 존재할련지..
지금 부터 가속 페달을 밟아야 할 것 같습니다..

 

필수

http://www.pempi.co.kr/xe/2184791 - MIPS PPC 호환 DLL(RSP는 받지마세요. // 그냥 있길래..)
http://www.pempi.co.kr/xe/2194588 - MIPS SQLCE v3.0
http://www.pempi.co.kr/xe/2195968 - MIPS .Net Compact Framewrok v3.5
http://daysari.tistory.com/83 - ARM 필수 프로그램(Wince 0.8dll // gapi 4.04 // 닷넷프레임워크 3.5 // d900gxdll(쓰실려면Gapi4.03을 받으세요.)

http://www.pempi.co.kr/xe/2195663 - Microsoft ActiveSync v4.5

 

공용

 

프로그램

 

http://www.pempi.co.kr/xe/2184539 - 불량화소 체크 이미지(480x272)
http://www.pempi.co.kr/xe/2192420 - 불량화소 체크 이미지(800x480)
http://daysari.tistory.com/189 - SMath Studio v0.88
http://daysari.tistory.com/191 - Isilo v5.12_HPC
http://www.pempi.co.kr/xe/2194598 - IsiloX 4.37(PC // 클리핑 프로그램)
http://daysari.tistory.com/99 - Mate On v0.14
http://www.pempi.co.kr/xe/2194319 - PSC(화면캡처 프로그램 // mips라 적혀있지만 arm도 있습니다)
http://www.pempi.co.kr/xe/2195617 - CEbench(arm인지 mips인지.. 아니면 둘다인지;;.. 둘 다 인 것 같아서 일단..)
http://www.pempi.co.kr/xe/2195892 - GSFinder v1.4
http://www.pempi.co.kr/xe/2196090 - ceDic v2.0
http://www.pempi.co.kr/xe/2196037 - WordFlash 2008 Mobile v090208
http://www.pempi.co.kr/xe/7904431 - PMP콩(데모)
http://daysari.tistory.com/139 - Yahoo! Messenger

 

응용 프로그램

 

http://manybooks.net/ - 각종 영문 이북 사이트

 

Power Dic - http://www.pempi.co.kr/xe/2194308 - 법률 용어 사전
         └ http://www.pempi.co.kr/xe/2194324 - 컴퓨터 용어 사전

 

E-book - http://www.pempi.co.kr/xe/2194272 - 무협소설 모음
      └ http://www.pempi.co.kr/xe/2194270 - 소설 모음

 

Mdict - http://www.pempi.co.kr/xe/2185369 - English Idiomes
     └ http://www.pempi.co.kr/xe/2185274 - 한일/일한, 한영/영한
     └ http://www.pempi.co.kr/xe/2185232 - 국어, 영영
     └ http://www.pempi.co.kr/xe/2190301 - 기타 잡사전;;
     └ http://www.pempi.co.kr/xe/2191365 - 영중 사전
     └ http://www.pempi.co.kr/xe/2191351 - 예문 많은 일한 사전
     └ http://www.pempi.co.kr/xe/2191313 - 옥편
     └ http://www.pempi.co.kr/xe/2191831 - 일본 대 백과사전
     └ http://www.pempi.co.kr/xe/2191233 - 영한 한영 합본 사전
     └ http://www.pempi.co.kr/xe/2191965 - 영어 발음 기호 폰트
     └ http://www.pempi.co.kr/xe/2193410 - 고사성어사전
     └ http://www.pempi.co.kr/xe/2194135 - 의학 용어사전
     └ http://www.pempi.co.kr/xe/2194283 - 우편번호(2008.01.23)
     └ http://www.pempi.co.kr/xe/2194627 - 라틴어 사전
     └ http://www.pempi.co.kr/xe/2194612 - 이탈리아어 사전
     └ http://www.pempi.co.kr/xe/2194606 - 법률 용어 사전
     └ http://www.pempi.co.kr/xe/2195916 - Colins 영영 사전
     └ http://www.pempi.co.kr/xe/2195919 - 이탈리아어/한글 사전
     └ http://www.pempi.co.kr/xe/?_filter=search&mid=wince_pds&category=&search_target=title&search_keyword=Mdict+%EC%9D%BC%EB%B3%B8%EC%96%B4%ED%8C%90- 일본어 위키사전
     └ http://www.pempi.co.kr/xe/?_filter=search&mid=wince_pds&category=&search_target=title&search_keyword=Mdict+sound - Mdict Sound File
     └ http://cafe.naver.com/q5q5q5/75580 - 브리태니커 영영사전
     └ http://www.pempi.co.kr/xe/8432896 - 위키백과 4월
     └ http://cafe.naver.com/maxianpmp/158421 콜린스코빌드/롱맨 영영사전 1/3
     └ http://cafe.naver.com/maxianpmp/158422 콜린스코빌드/롱맨 영영사전 2/3
     └ http://cafe.naver.com/maxianpmp/158423 콜린스코빌드/롱맨 영영사전 3/3
     └ http://cafe.naver.com/maxianpmp/13224 - 독일/한국어

 

Final Burn - http://www.pempi.co.kr/xe/2195088 - Dungeons & Dragons Shadows Over Mastara

 

SmallTweak(한글화) - http://daysari.tistory.com/141
          (영문화)└ http://daysari.tistory.com/65

 

Isilo - http://www.pempi.co.kr/xe/2191114 - Dagobert D. Runes Ed., Dictionary of Philosophy (1942)
     └ http://www.pempi.co.kr/xe/2191101 - 가톨릭 매일미사(무슨 뜻?)
     └ http://www.pempi.co.kr/xe/2191099 - 락 명반 100선(2006.10.31)
     └ http://hotpda.vicp.net/news - 중국 클리핑 주소
     └ http://www.pempi.co.kr/xe/2192451 - 요리 백과
     └ http://www.pempi.co.kr/xe/2194138 - 서울시내 주차장 정보(2007.12.11)
     └ http://www.pempi.co.kr/xe/2192341 - 수도권 연계버스 노선(2007.02.09)

 

암기왕 - http://www.pempi.co.kr/xe/2192333 - 중국어 회화 301구(병음포함)
      └ http://www.pempi.co.kr/xe/2192330 - 일본어 능력 시험 1급 자료
      └ http://www.pempi.co.kr/xe/2192327 - 미국 20대가 가장 많이 쓰는 언어(2007.02.08)
      └ http://www.pempi.co.kr/xe/2192324 - 고교과정필수 스페인어 단어
      └ http://www.pempi.co.kr/xe/2192445 - 필수 명사, 동사
      └ http://www.pempi.co.kr/xe/2193413 - 한자 1급 ~ 10급
      └ http://www.pempi.co.kr/xe/2193560 - 사자성어 / 고사성어
      └ http://www.pempi.co.kr/xe/2194952 - 히라가나 가타가나
      └ http://www.pempi.co.kr/xe/2195922 - 보카 워크
      └ http://www.pempi.co.kr/xe/2194949 - 해커스 토플 표제어-뜻-동의어-반의어
      └ http://www.pempi.co.kr/xe/2194946 - MMK 해커스 Voca 표제어-예문-동의어
      └ http://www.pempi.co.kr/xe/2195575 - 보카, 토익, 천자문, 한자 1~10급, 행정법
      └ http://www.pempi.co.kr/xe/2195833 - 상식퀴즈
      └ http://www.pempi.co.kr/xe/2195830 - 한자 관련 모음
      └ http://www.pempi.co.kr/xe/2195827 - 컴퓨터 관련 모음
      └ http://www.pempi.co.kr/xe/2195821 - 일본어 관련 모음
      └ http://www.pempi.co.kr/xe/2195824 - 중국어 관련 모음
      └ http://www.pempi.co.kr/xe/2195824 - 영어 관련 모음

 

게임

http://www.pempi.co.kr/xe/2184870 - GameBoy Advance Emulator
http://cafe.naver.com/v5user/31335 - Pocket General(아마도)
http://daysari.tistory.com/77 - Doom Legacy(vga)

 

게임 응용 프로그램

 

모프기어 - http://www.pempi.co.kr/xe/2186144 - FIFA 98 // 알라딘
        └ http://www.pempi.co.kr/xe/2186120 - 슈퍼마리오3 // 어메이징 테니스
        └ http://www.pempi.co.kr/xe/2186091 - Romancing Saga // 보글보글 Old & New
        └ http://www.pempi.co.kr/xe/2185787 - 마리오 카트
        └ http://www.pempi.co.kr/xe/2187308 - 농구 // Joe Mac(?)
        └ http://www.pempi.co.kr/xe/2187287 - Final Fighter 3 // FIFA 98
        └ http://www.pempi.co.kr/xe/2187272 - Zero 4 Champ // 슈퍼마리오 월드
        └ http://www.pempi.co.kr/xe/2187248 - 슈퍼마리오 월드 2 요쉬 // 피구왕 통키
        └ http://www.pempi.co.kr/xe/2187533 - 원더보이
        └ http://www.pempi.co.kr/xe/2187483 - 소닉 2
        └ http://www.pempi.co.kr/xe/2189945 - 기기괴계 // 바둑 // 슈퍼 오프로드
        └ http://www.pempi.co.kr/xe/2190492 - 파이널 판타지 어드밴스
        └ http://www.pempi.co.kr/xe/2190960 - 파이널 판타지 6
        └ http://www.pempi.co.kr/xe/2191158 - 테일즈 오브 더 월드 나라키리 던전 2
        └ http://www.pempi.co.kr/xe/2191139 - 슈퍼로봇대전 OG 2
        └ http://www.pempi.co.kr/xe/2191721 - PCE 모음 25개
        └ http://www.pempi.co.kr/xe/2191653 - 제니스 23개, nes 39개
        └ http://www.pempi.co.kr/xe/2191948 - 태권도
        └ http://www.pempi.co.kr/xe/2192307 - 위닝 일레븐 사커 // 테트리스 월드
        └ http://www.pempi.co.kr/xe/2192304 - 역전 재판 1, 2
        └ http://www.pempi.co.kr/xe/2192301 - 악마성 캐슬바니아 1, 2 // 원피스
        └ http://www.pempi.co.kr/xe/2192298 - 우에키의 법칙 // 스페셜 포스
        └ http://www.pempi.co.kr/xe/2192295 - 목장 이야기 - 미네랄 타운의 친구들 // 별의 카비 거울의 대미궁
        └ http://www.pempi.co.kr/xe/2192292 - 드릴러 // 메탈슬러그 어드벤스
        └ http://www.pempi.co.kr/xe/2192289 - 디지몬 배틀 스피릿 // 나루토 최강닌자대결
        └ http://www.pempi.co.kr/xe/2193827 - Dr_Sudoku(스도쿠)
        └ http://www.pempi.co.kr/xe/2193824 - 전설의 오우거 배틀 // 택틱스오우거(일어) // 로맨싱사가 2
        └ http://www.pempi.co.kr/xe/2193784 - 포켓몬스터 골드
        └ http://www.pempi.co.kr/xe/2194544 - 포켓몬스터 루비
        └ http://www.pempi.co.kr/xe/2194541 - 포켓몬스터 사파이어
        └ http://www.pempi.co.kr/xe/2194553 - 포켓몬스터 리프그린
        └ http://www.pempi.co.kr/xe/2194376 - 배틀시티
        └ http://www.pempi.co.kr/xe/2194373 - 갤러그
        └ http://www.pempi.co.kr/xe/2194370 - 엑스리온
        └ http://www.pempi.co.kr/xe/2194398 - 원피스 고잉 베이스볼
        └ http://www.pempi.co.kr/xe/2195205 - YS 1~5

        └ http://www.pempi.co.kr/xe/2194988 - 삼국지 영걸전

 

Pocket Dos - http://www.pempi.co.kr/xe/2193792 - 삼국지 영걸전


Snes(모프기어도 가능) - http://www.pempi.co.kr/xe/2191828 - 모음 27개
                     └ http://www.pempi.co.kr/xe/2191770 - 모음 41개

 

ScummVM - http://www.pempi.co.kr/xe/2186628 - 원숭이 섬의 비밀 2
       └ http://www.pempi.co.kr/xe/2186810 - The Dig 3(압축 3개 파일)
          http://www.pempi.co.kr/xe/2186808 - The Dig 2
          http://www.pempi.co.kr/xe/2186795 - The Dig 1
       └ http://www.pempi.co.kr/xe/2192460 - ScummVM 0.40(arm) + 원숭이섬의 비밀 1&2

 

MIPS(제목을 꼭 보세요. // mips프로그램이 호환 되는 것과 안되는 것이 있습니다. 즉, 어떤기종에 다른 기종프로그램이 되는 것도 있고 안되는 것도 있다는 뜻.)

 

RSP Peace : Force Edition
http://cafe.naver.com/net4s2/44151 <- Netforce 1, 2
http://cafe.naver.com/q5q5q5/75102 <- Q5, P5

 

Windows CE System

http://www.pempi.co.kr/xe/2196106 - M43 XP화
http://www.pempi.co.kr/xe/2194454 - M43 XP 블랙에디션?
http://www.pempi.co.kr/xe/2194678 - M43 XP 핑크버젼
http://cafe.naver.com/net4s2/43171 - Netforce 1, 2 XP
http://www.pempi.co.kr/xe/2194534 - Q5 제어판 확장

 

프로그램

http://www.pempi.co.kr/xe/2195925 - Total Commander v2.51(탐색기)
http://www.pempi.co.kr/xe/2192126 - CoolPlayer(음악플레이어)
http://www.pempi.co.kr/xe/2184604 - GSplayer(음악플레이어)
http://www.pempi.co.kr/xe/2185585 - GSplayer Another(음악플레이어)
http://www.pempi.co.kr/xe/2184737 - Adobe Acrobat Reader v1.0
http://www.pempi.co.kr/xe/2193775 - Isilo v5.0
http://daysari.tistory.com/191 - Isilo v5.12_HPC
http://www.pempi.co.kr/xe/2194528 - PhatPad v2.2
http://www.pempi.co.kr/xe/2195608 - Pockey Pad(메모 프로그램)
http://www.pempi.co.kr/xe/2185214 - iSilo v4.32
http://www.pempi.co.kr/xe/2185207 - MSN 메신져
http://www.pempi.co.kr/xe/2194974 - Diopen v5.0
http://www.pempi.co.kr/xe/2185188 - 메모장
http://www.pempi.co.kr/xe/2185119 - 타로카드
http://www.pempi.co.kr/xe/2185066 - Winamp
http://www.pempi.co.kr/xe/2186958 - TCPMP 0.72
└ http://www.pempi.co.kr/xe/2185046 - TCPMP AC3 filter
http://www.pempi.co.kr/xe/2185004 - DeSappear(아이콘 글씨 배경 투명)
http://www.pempi.co.kr/xe/2194340 - TransparantCE(아이콘 글씨)
http://www.pempi.co.kr/xe/2184930 - Tascal Registry Editor v0.9
http://www.pempi.co.kr/xe/2192457 - 지하철 노선표
http://www.pempi.co.kr/xe/2194141 - Pocket Subway v2.5
http://www.pempi.co.kr/xe/2185511 - Zesspim(일정 관리)
http://www.pempi.co.kr/xe/2185505 - 카운트 다운
http://www.pempi.co.kr/xe/2185489 - DeClock(시계)
http://www.pempi.co.kr/xe/2185467 - iTaskMgr(작업관리자)
http://www.pempi.co.kr/xe/2185458 - NFCanvas(그림 그리기)
http://www.pempi.co.kr/xe/2185382 - 사전 = 뭐냐?;;
http://www.pempi.co.kr/xe/2186242 - 무식한 텍스트 뷰어(무식이) 0.76a
http://www.pempi.co.kr/xe/2185331 - All Close Process
http://www.pempi.co.kr/xe/2195541 - NotePad(메모장 // hiyo12님의 자작)
http://www.pempi.co.kr/xe/2186042 - PocketMVP
http://www.pempi.co.kr/xe/2194419 - PocketArtist v3.2(포토샵)
http://www.pempi.co.kr/xe/2185740 - StartQ
http://www.pempi.co.kr/xe/2186703 - SpreadCE(엑셀 // 영문)
http://www.pempi.co.kr/xe/2191845 - SpreadCE(엑셀 // 한글)
http://www.pempi.co.kr/xe/2186558 - 만뷰
http://www.pempi.co.kr/xe/2186977 - 책뷰
http://www.pempi.co.kr/xe/2186472 - Aview
http://www.pempi.co.kr/xe/2186397 - 포켓우먼(일정관리 // 트라이얼)
http://www.pempi.co.kr/xe/2191843 - Tombo 2.0b4
http://www.pempi.co.kr/xe/2187040 - FreeProxy(인터넷)
http://www.pempi.co.kr/xe/2186773 - 블루핀 FM라디오
http://www.pempi.co.kr/xe/2188182 - Acdsee
http://www.pempi.co.kr/xe/2189152 - Ewallet 3.1(개인정보 관리)
http://www.pempi.co.kr/xe/2189900 - Battery Monitor 2.0(배터리 정보 프로그램)
http://www.pempi.co.kr/xe/2190145 - DioPen 5.0 복사 버전
http://www.pempi.co.kr/xe/2191124 - Cash Organizer(금전관리)
http://www.pempi.co.kr/xe/2190929 - IzziMemo(포스트 잇)
http://www.pempi.co.kr/xe/2190897 - Pocket Diet Tracker(다이어트 관리)
http://www.pempi.co.kr/xe/2190888 - EasyTweak
http://www.pempi.co.kr/xe/2190830 - 공학용 계산기
http://www.pempi.co.kr/xe/2194854 - TascalCalc(공학용 계산기)
http://www.pempi.co.kr/xe/2194958 - SooCalc(계산기)
http://www.pempi.co.kr/xe/2191471 - Metro(지하철 환승 정보 프로그램)
http://www.pempi.co.kr/xe/2191411 - HunCE(훈민정음)
http://www.pempi.co.kr/xe/2191887 - Flac Player 1.21
http://www.pempi.co.kr/xe/2191925 - LadyLuck(로또번호 생성기)
http://www.pempi.co.kr/xe/2191923 - Notes2Hand
http://www.pempi.co.kr/xe/2191921 - ListPro v3.0
http://www.pempi.co.kr/xe/2191919 - MS Terminal Server/Client for WinCE
http://www.pempi.co.kr/xe/2191915 - Big Clock
http://www.pempi.co.kr/xe/2191913 - Expression Calculator
http://www.pempi.co.kr/xe/2191911 - Abacus Calculator Full
http://www.pempi.co.kr/xe/2191901 - 그림판
http://www.pempi.co.kr/xe/2194486 - JZP2 v0.20(그림판)
http://www.pempi.co.kr/xe/2191899 - Xaudio
http://www.pempi.co.kr/xe/2191897 - 보이스레코딩
http://www.pempi.co.kr/xe/2191967 - nPOP(메일)
http://www.pempi.co.kr/xe/2191932 - PC-cillin(백신 프로그램)
http://www.pempi.co.kr/xe/2191973 - Pocket CAD v4.08
└ http://www.pempi.co.kr/xe/2191976 - Pocket CAD Including CADExchanger
http://www.pempi.co.kr/xe/2191984 - Pocket Universe 2000 v3.02
http://www.pempi.co.kr/xe/2192171 - bTask(테스크 관리 프로그램)
http://www.pempi.co.kr/xe/2192168 - Tray Date
http://www.pempi.co.kr/xe/2193638 - 슬림 런처 v0.4
http://www.pempi.co.kr/xe/2192153 - CaptCE(캡처 프로그램)
http://www.navinside.com/bbs/zboard.php?id=pds&page=1&sn1=&divpage=1&category=2&sn=off&ss=on&sc=on&select_arrange=headnum&desc=asc&no=2674 - EasyCap v0.6(캡처 프로그램)
http://www.pempi.co.kr/xe/2192208 - 일정 관리
http://www.pempi.co.kr/xe/2192198 - Calc98CE
http://www.pempi.co.kr/xe/2192248 - 넷포스 바둑
http://www.pempi.co.kr/xe/2192246 - Resco Photo Viewer v5.2
http://www.pempi.co.kr/xe/2189709 - Resco File Explorer v5.1
http://www.pempi.co.kr/xe/2192287 - 윈도우 미디어 플레이어 9 + 마이크로소프트 뷰어
http://www.pempi.co.kr/xe/2192338 - Elite Car Manager(차계부)
http://www.pempi.co.kr/xe/2192581 - MIPS Gapi(주의 하세요..)
└ http://www.pempi.co.kr/xe/2193733 - gx.dll 32bit
http://www.pempi.co.kr/xe/2192607 - P2용 만뷰
http://www.pempi.co.kr/xe/2192977 - 여행길라잡이
http://www.pempi.co.kr/xe/2193225 - 듣고 읽고 쓰는 영어
http://www.pempi.co.kr/xe/2193528 - 예약종료 프로그램
http://www.pempi.co.kr/xe/2193829 - 스탑워치
http://www.pempi.co.kr/xe/2196034 - 심플한 스탑워치
http://www.pempi.co.kr/xe/2193871 - Avast! 4 PDA Edition(백신 프로그램 // 트라이얼)
http://www.pempi.co.kr/xe/2194075 - Xmind(MC 스퀘어와 유사한 프로그램)
http://www.pempi.co.kr/xe/2194233 - WR-Tools ResInfo
http://www.pempi.co.kr/xe/2194317 - TabRight(마우스 우클릭)
http://www.pempi.co.kr/xe/2194337 - HTML 에디터
http://www.pempi.co.kr/xe/2194327 - Punzip(압축푸는 프로그램)
http://www.pempi.co.kr/xe/2194346 - Stocks(주식관리 프로그램)
http://www.pempi.co.kr/xe/2194389 - IzziMemo(메모 프로그램 // 한컴쪽지?)
http://www.pempi.co.kr/xe/2194592 - Cash Organizer(가계부)
http://www.pempi.co.kr/xe/2194776 - QuackenChat
http://www.pempi.co.kr/xe/2194867 - Flash Player 7
http://www.pempi.co.kr/xe/2195491 - Memora
http://www.pempi.co.kr/xe/2195514 - P5 Tools
http://www.pempi.co.kr/xe/2195611 - MobiPocket Reader
http://www.pempi.co.kr/xe/2195614 - KHMP Diary(일기장)
http://www.pempi.co.kr/xe/2196022 - CorePlayer v1.3.0
http://cafe.naver.com/q5q5q5/69295 - CorePlayer v1.3.6
http://cafe.naver.com/q5q5q5/67093 - EPMakes Docoweb v0.32 Beta for RSP N Series FINAL SP3
http://www.pempi.co.kr/xe/2196122 - ProcessV

 

학습

http://www.pempi.co.kr/xe/2185603 - Super Memo 3.6
http://www.pempi.co.kr/xe/2185992 - Jplayer 0.7c
http://www.pempi.co.kr/xe/2192201 - Grevoca
http://www.pempi.co.kr/xe/2192321 - 암기왕 0.99 b4
http://www.pempi.co.kr/xe/2192144 - 옥편
http://www.pempi.co.kr/xe/2187496 - AnyDic(+PhatPad, 무식이)
http://www.pempi.co.kr/xe/2184940 - Mdict v2.1.3
http://www.pempi.co.kr/xe/2185943 - Mdict v2.2
http://www.pempi.co.kr/xe/2191962 - Mdict v2.3r1
http://www.pempi.co.kr/xe/2192136 - Mdict v2.3
http://www.pempi.co.kr/xe/2196099 - Mdict v2.5
http://www.pempi.co.kr/xe/2196111 - Mdict v3.0 Final Release

 

게임

http://www.pempi.co.kr/xe/2186598 - Scummvm 0.7.1
http://www.pempi.co.kr/xe/2184604 - NES 롬 게임 에뮬레이터
http://www.pempi.co.kr/xe/2184712 - Mame 에뮬레이터
http://www.pempi.co.kr/xe/2187071 - 모프기어
└ http://www.pempi.co.kr/xe/2185711 - 모프기어 필수 DLL
http://www.pempi.co.kr/xe/2185212 - PocketSnes
http://www.pempi.co.kr/xe/2193667 - PocketNester
http://www.pempi.co.kr/xe/2193696 - USB Game Pad Driver
http://www.pempi.co.kr/xe/2193663 - PocketCultMame 0.4a + USB GamePad Driver
└ http://www.pempi.co.kr/xe/2193665 - PocketCultMame 0.4a -Rom
http://www.pempi.co.kr/xe/2193684 - PocketSnes v1.12.200
http://www.pempi.co.kr/xe/2193728 - GnGeoCE(NEOGEO) v0.7
└ http://www.pempi.co.kr/xe/?_filter=search&mid=emul_pds&category=&search_target=title&search_keyword=gngeo - 에뮬
http://www.pempi.co.kr/xe/2193717 - VisualBoyAdvance 1.7.2
http://www.pempi.co.kr/xe/2193711 - XpcePPC
http://www.pempi.co.kr/xe/2193690 - GnuboySE03
http://www.pempi.co.kr/xe/2196063 - DosBox 0.71
http://www.pempi.co.kr/xe/2185832 - Gunboy
http://www.pempi.co.kr/xe/2189132 - Fast vs Furious(핀볼)
http://www.pempi.co.kr/xe/2192189 - Bubblets
http://www.pempi.co.kr/xe/2192318 - 일단 맞고 v0.2(480x272)
http://www.pempi.co.kr/xe/2192315 - 일단 맞고 v0.2(800x480)
└ http://www.pempi.co.kr/xe/2192639 - v0.21 업그레이드
http://www.pempi.co.kr/xe/2185197 - 모노폴리
http://www.pempi.co.kr/xe/2185146 - 부르마블
http://www.pempi.co.kr/xe/2185049 - 마작?
http://www.pempi.co.kr/xe/2194788 - 장기
http://www.pempi.co.kr/xe/2184876 - 스페이스 인베이더
http://www.pempi.co.kr/xe/2184855 - 소코반
http://www.pempi.co.kr/xe/2193708 - 뿌요뿌요
http://www.pempi.co.kr/xe/2195488 - TVE
http://www.pempi.co.kr/xe/2185616 - Gnugo(바둑)
http://www.pempi.co.kr/xe/2193702 - BoxWorld(푸시푸시)
http://www.pempi.co.kr/xe/2185574 - 오델로
http://www.pempi.co.kr/xe/2193641 - Zebra(오델로)
http://www.pempi.co.kr/xe/2186035 - Diamond Mine
http://www.pempi.co.kr/xe/2195132 - 생쥐 잡기(두더지 잡기 게임이랑 같음)
http://www.pempi.co.kr/xe/2185973 - 벽돌 깨기
http://www.pempi.co.kr/xe/2185814 - PocketDos
http://www.pempi.co.kr/xe/2186406 - 사다리 타기
http://www.pempi.co.kr/xe/2187238 - 마작형 사천성(마작 아닙니다.)
http://www.pempi.co.kr/xe/2187190 - 테트리스
http://www.pempi.co.kr/xe/2193743 - 테트리스
hhttp://www.pempi.co.kr/xe/2191960 - 백가몬 v2.0
http://www.pempi.co.kr/xe/2190128 - 스마트 마종(사천성?)
http://www.pempi.co.kr/xe/2190123 - Elixir
http://www.pempi.co.kr/xe/2190111 - Bounce Out
http://www.pempi.co.kr/xe/2190686 - PowWow(사격)
http://www.pempi.co.kr/xe/2190666 - CBMan(팩맨)
http://www.pempi.co.kr/xe/2190649 - 낙하산 격추 게임
http://www.pempi.co.kr/xe/2190605 - 테트리스, 2, 스네이크, 같은그림 찾기, 포트리스, 얼음 깨기
http://www.pempi.co.kr/xe/2190570 - 고스톱
http://www.pempi.co.kr/xe/2190557 - 가로세로 퍼즐(영어)
http://www.pempi.co.kr/xe/2190521 - 골프(게임 이름이 뭐냐고 ㅠㅠ;;)
http://www.pempi.co.kr/xe/2190511 - 파이프 연결
http://www.pempi.co.kr/xe/2190473 - Mastersoft Chess
http://www.pempi.co.kr/xe/2193635 - Pocket Chess
http://www.pempi.co.kr/xe/2192186 - ICBM 레이저
http://www.pempi.co.kr/xe/2190392 - 미로찾기
http://www.pempi.co.kr/xe/2190806 - 버블 블레스터
http://www.pempi.co.kr/xe/2190779 - 3D 골프
http://www.pempi.co.kr/xe/2190723 - 심시티 2000
http://www.pempi.co.kr/xe/2191895 - Bridge // Sploit // Spade
http://www.pempi.co.kr/xe/2191958 - Gem Hunter
http://www.pempi.co.kr/xe/2191956 - FireDrill
http://www.pempi.co.kr/xe/2191954 - Scarybear
http://www.pempi.co.kr/xe/2191946 - TttLy
http://www.pempi.co.kr/xe/2192089 - Shades 'n' Shadow
http://www.pempi.co.kr/xe/2192087 - 3D 테트리스
http://www.pempi.co.kr/xe/2192083 - 로드런너
http://www.pempi.co.kr/xe/2192081 - 행맨
http://www.pempi.co.kr/xe/2192079 - 미니 골프
http://www.pempi.co.kr/xe/2192077 - 봄버맨
hhttp://www.pempi.co.kr/xe/2192118 - ScummVM 0.91 넷포스 r2
http://www.pempi.co.kr/xe/2192094 - 오목
http://www.pempi.co.kr/xe/2192092 - 퍼즐게임?
http://www.pempi.co.kr/xe/2192174 - 공주빼내기 퍼즐 게임
http://www.pempi.co.kr/xe/2193737 - SuperDoku(스도쿠)
http://www.pempi.co.kr/xe/2194244 - Transport Tycoon 0.5.0RC5(넷포스에서 하다가 말았던거 같은데)
└ http://www.pempi.co.kr/xe/2194247 - SDL.dll
http://www.pempi.co.kr/xe/2194432 - CanTris(테트리스 게임)
http://www.pempi.co.kr/xe/8294682 - Warfare Incorporated

 

ARM(arm은 대부분 호환 서로 되므로,,..)

 

Windows CE System

http://cafe.naver.com/upop/8656 - UPOP XP화
http://cafe.naver.com/upop/8666 - UPOP XP 종료
http://cafe.naver.com/upop/8401 - UPOP 뮤직 플레이어 아이콘 수정
http://cafe.naver.com/upop/8402 - UPOP 무비 플레이어 아이콘 수정
http://cafe.naver.com/v5user/35506 - V5 XP화 v1.0.0.3
http://cafe.naver.com/v5user/33307 - V5 모든 플레이어 아이콘 수정 v1.08

 

프로그램

http://www.pempi.co.kr/xe/2192372 - 옥편
http://www.pempi.co.kr/xe/2192381 - 책뷰
http://www.pempi.co.kr/xe/2193002 - Pocket Subway v2.5 build 047
http://www.pempi.co.kr/xe/2192362 - CaptCE(캡처 프로그램)
http://www.navinside.com/bbs/zboard.php?id=pds&page=2&sn1=&divpage=1&category=1&sn=off&ss=on&sc=on&select_arrange=headnum&desc=asc&no=2673 - EasyCap v0.6(캡처 프로그램)
http://www.pempi.co.kr/xe/2192359 - 미오툴
http://www.pempi.co.kr/xe/2194280 - Isilo v5.0(한글)
http://daysari.tistory.com/159 - Isilo v5.12_PPC
http://daysari.tistory.com/191 - Isilo v5.12_HPC
http://www.pempi.co.kr/xe/2193525 - CSDViewer v2.2.8.0
http://www.pempi.co.kr/xe/2192506 - ClearVue 2.41.387
http://www.pempi.co.kr/xe/2194672 - Microsoft Viewer
http://cafe.naver.com/maxianpmp/9740 - Djvu Viewer
http://www.pempi.co.kr/xe/2193714 - PocketNotepad v4.0.10(메모장)
http://www.pempi.co.kr/xe/2193437 - One Cat Doodler 3(그림판)
http://www.pempi.co.kr/xe/2193434 - PaintWince 2.0.1(그림판)
http://www.pempi.co.kr/xe/2193374 - Total Commander 2.50b2(탐색기 // 한글)
http://daysari.tistory.com/23 - Total Commander 2.51 // 2.52 B2(탐색기)
http://www.pempi.co.kr/xe/2193534 - Resco Explorer 2007 v6.0(탐색기)
http://www.pempi.co.kr/xe/2193431 - Avira AntiVir Mobile v6.37.0.1(백신 프로그램)
http://www.pempi.co.kr/xe/2192443 - Tascal Registry Editor
http://www.pempi.co.kr/xe/2192434 - MangaMeeyaCE 2.4B(망가미야)
http://www.pempi.co.kr/xe/2192431 - 만뷰
http://www.pempi.co.kr/xe/2192425 - ITaskMgr(Small)
http://cafe.naver.com/v5user/37555 - ITaskMgr(Big)
http://www.pempi.co.kr/xe/2192417 - PhatPad v3.0(메모 프로그램)
\http://www.pempi.co.kr/xe/2193821 - PhatPad v4.3(메모 프로그램)
http://cafe.naver.com/maxianpmp/167181 - PhatPad v4.5(메모 프로그램)
http://cafe.naver.com/maxianpmp/8947 - 스마트 메모(메모 프로그램)
http://www.pempi.co.kr/xe/2194772 - PenMemo(메모 프로그램)
http://www.pempi.co.kr/xe/2192402 - MMascot
http://www.pempi.co.kr/xe/2192396 - Xnview Pocket 1.35(이미지 뷰어)
http://www.pempi.co.kr/xe/2193239 - Pocket QuickView 3.0.10(이미지 뷰어)
http://cafe.naver.com/maxianpmp/10534 - UltraG(이미지 뷰어)
http://www.pempi.co.kr/xe/2195603 - Microsoft LIT Reader
http://www.pempi.co.kr/xe/2193605 - Acrobat Reader v1.0
http://www.pempi.co.kr/xe/2192503 - Acrobat Reader v2.0
http://www.pempi.co.kr/xe/2193348 - Primer v3.1(pdf reader)
http://www.pempi.co.kr/xe/2192486 - 코믹구루CE v2.18
http://www.pempi.co.kr/xe/2192492 - GSplayer v2.25(Small // 음악플레이어)
http://www.pempi.co.kr/xe/2193180 - GSplayer v2.25(Big // 음악플레이어)
http://www.pempi.co.kr/xe/2193722 - Lyrics Magic v1.60(음악 플레이어 // lrc가사지원)
http://www.pempi.co.kr/xe/2192782 - Pocket Clcok v1.5
http://www.pempi.co.kr/xe/2193230 - ListPro v3.0T
http://www.pempi.co.kr/xe/2192753 - Pocket Tune v2.1(메트로놈)
http://www.pempi.co.kr/xe/2192705 - Wisbar Advance v1.3.2.2
http://www.pempi.co.kr/xe/2192611 - Pocket MindMap v1.3.1.3
http://cafe.naver.com/maxianpmp/87596 - SpreadCE 2.0.1(엑셀 // 한글)
http://www.pempi.co.kr/xe/2192525 - Ptab SpreadSheet v3.01(엑셀 // 영어)
http://www.pempi.co.kr/xe/2192955 - 짠순이(가계부) v1.0.0.14
http://cafe.naver.com/maxianpmp/11480 - AidiiMoney(가계부)
http://www.pempi.co.kr/xe/2192951 - MyCar(차계부) v1.20
http://www.pempi.co.kr/xe/2192941 - ChmReader(문서뷰어)
http://www.pempi.co.kr/xe/2193522 - Aview 0.91140
http://www.pempi.co.kr/xe/2192915 - CEdit v3.5(텍스트 에디터)
http://www.pempi.co.kr/xe/2192889 - CoolCalc v3.17(다양한 계산기 - 쓰는 중 ㅎㅎ.)
http://www.pempi.co.kr/xe/2193210 - 간단한 계산기
http://www.pempi.co.kr/xe/2193204 - Orionic v1.2(별자리 보기)
http://www.pempi.co.kr/xe/2193407 - Pocket Stars v5.5(별자리 보기)
http://www.pempi.co.kr/xe/2193201 - IntelliArt MIDI Player v4.0.0
http://www.pempi.co.kr/xe/2193198 - MortPlayer v3.3
http://www.pempi.co.kr/xe/2193195 - MinimoCE 0.016(인터넷 브라우저)
http://www.pempi.co.kr/xe/2193725 - ftxBroweser 0.9f(인터넷 브라우저)
http://cafe.naver.com/kwsp1/1518 - 오페라 미니 5(인터넷 브라우저)
http://www.pempi.co.kr/xe/2193183 - WinVibe 4.9.5(l900s 불가 ㅠㅠ)
http://daysari.tistory.com/109 - Pocket RAR v3.93
http://daysari.tistory.com/97 - 7-zip v9.10b
http://daysari.tistory.com/131 - 7-zip v9.12b
http://www.pempi.co.kr/xe/2193174 - Conduits Pocket Player v3.0
http://www.pempi.co.kr/xe/2193169 - Picture Diary v2.16
http://www.pempi.co.kr/xe/2193086 - HwpViewerCE
http://www.pempi.co.kr/xe/2193166 - 금전 출납부
http://www.pempi.co.kr/xe/2193064 - HunCE
http://www.pempi.co.kr/xe/2193233 - bUSEFUL Backup Plus(백업 프로그램)
http://daysari.tistory.com/38 - 포켓알맵
http://daysari.tistory.com/37 - Sentry 2020(조금 더 설명을 자세히..)
http://daysari.tistory.com/98 - Diopen v5.0
http://www.pempi.co.kr/xe/2193660 - Diopen v6.0(트라이얼)
http://daysari.tistory.com/151 - 중국어 키보드(Chinese Keyboard)
http://daysari.tistory.com/152 - 일본어 키보드(Japanses Input)
http://daysari.tistory.com/153 - 일본어 키보드(Japanses Keyboard)
http://daysari.tistory.com/154 - 한영 키보드(나랏글 펜입력)
http://daysari.tistory.com/155 - 독일어 키보드(German Keyboard)
http://daysari.tistory.com/156 - 일영 키보드(ComPoBox // QVGA, VGA)
http://daysari.tistory.com/157 - 영어 키보드(Virtual Keyboard Jotkbd Stand alone v1.0)
http://www.pempi.co.kr/xe/2193377 - TimeTable 0.3(시간표)
http://www.pempi.co.kr/xe/2194170 - Resco Photo Viewer v6.33 Pro
http://www.pempi.co.kr/xe/2194449 - PocketLoupe(사진 프로그램 Raw 지원)
http://www.pempi.co.kr/xe/2193336 - 40th Iplay v4.82.234.610(mp3 플레이어)
http://www.pempi.co.kr/xe/2193386 - Haail Reader v2.0b227(문서뷰어)
http://www.pempi.co.kr/xe/2193456 - kbStopWatch 0.1.0.0
http://www.pempi.co.kr/xe/2193453 - sinPocketStopwatch v2.10
http://www.pempi.co.kr/xe/2193799 - 스탑워치
http://www.pempi.co.kr/xe/2193448 - Ephemeris(천체위치 추산표)
http://www.pempi.co.kr/xe/2193548 - PocketChemistry v1.44(원소주기율표)
http://www.pempi.co.kr/xe/2193537 - Holy Bible v1.1.0 - 성경 신약/구약
http://www.pempi.co.kr/xe/2193513 - MC스퀘어
http://www.pempi.co.kr/xe/2193507 - BrainZapr v1.0.0(MC 스퀘어와 유사한 프로그램 // 영어)
http://cafe.naver.com/v5user/33496 - BrainZapr(MC 스퀘어와 유사한 프로그램 // 한글화)
http://www.pempi.co.kr/xe/2193693 - TabRight(우클릭 // Wince dll 깔고 재부팅 하면 안깔아도 되는걸로 암)
http://www.pempi.co.kr/xe/2193789 - TCPMP 0.81 RC1
http://downloads.foxitsoftware.com/getfile.php?product=reader&version=1.0 for Windows CE 5.0 &language=enu&build=0820 &filetype=zip&mirror=cdn01 - Foxit Reader v1.0 build 0820
http://daysari.tistory.com/36 - Flash player 7
http://www.pempi.co.kr/xe/2194204 - Sanjabi(등산 안내 프로그램)
http://www.pempi.co.kr/xe/2194492 - 미니런쳐 v0.52(480x272)
http://www.pempi.co.kr/xe/2195669 - 미니런쳐 v0.55(800x480)
http://www.pempi.co.kr/xe/2194173 - eWallet(개인정보 관리)
http://www.pempi.co.kr/xe/2194230 - WR-Tools ResInfo
http://www.pempi.co.kr/xe/2194566 - NaviPlayer
http://www.pempi.co.kr/xe/2194783 - QuackenChat
http://www.pempi.co.kr/xe/2194915 - Raven Digital RDCalc
http://www.pempi.co.kr/xe/2196078 - CorePlayer v1.3.0
http://cafe.naver.com/maxianpmp/216140 - CorePlayer v1.3.6
http://www.pempi.co.kr/xe/7904479 - Mozila Mobile Webbrowser(인터넷 브라우저)
http://daysari.tistory.com/6 - Windows Media Player MiniLyrics v5.1.2725
http://daysari.tistory.com/17 - Desappear // Limpidce (바탕화면 글씨 배경색깔)
http://daysari.tistory.com/71 - 구글 번역기
http://daysari.tistory.com/74 - Windows Messenger for CE v4.0
http://daysari.tistory.com/11 - Pocket RAR v3.92b1
http://daysari.tistory.com/96 - Pocket RAR v3.92
http://daysari.tistory.com/109 - Pocket RAR v3.93
http://daysari.tistory.com/76 - CleanRam v1.96
http://daysari.tistory.com/121 - CleanRam v2.0
http://daysari.tistory.com/128 - CleanRam v2.1
http://daysari.tistory.com/169 - CleanRam v2.2
http://cafe.naver.com/v5user/17823 - CeProcessV
http://cafe.naver.com/maxianpmp/81515 - Flip It!(애니메이션 제작 툴)
http://cafe.naver.com/maxianpmp/29161 - uBook
http://cafe.naver.com/maxianpmp/19601 - Lotto(로또)
http://daysari.tistory.com/32 - AnyDic v1.0
http://cafe.naver.com/maxianpmp/180235 - HPC Media Player + Microsoft wma9 plugin

 

학습

http://www.pempi.co.kr/xe/2192411 - TranCreative WordBook(영영사전)
http://www.pempi.co.kr/xe/2192399 - Power Dic
http://www.pempi.co.kr/xe/2192500 - Mdict v2.3
http://www.pempi.co.kr/xe/2194413 - Mdict v2.4
http://www.pempi.co.kr/xe/2195455 - Mdict v2.5
http://blog.naver.com/slway1234/130067741337 - Mdict v3.0 RC1
http://www.octopus-studio.com/MDictHPC2K.ARM.zip - Mdict v3.0
http://daysari.tistory.com/12 - Mdict v3.1 b1(ppc)
http://www.pempi.co.kr/xe/2193416 - 암기왕 0.99r4
http://www.pempi.co.kr/xe/2192786 - Declan's Japanese Dictionary(일영사전)
http://www.pempi.co.kr/xe/2193192 - Grevoca v1.6
http://www.pempi.co.kr/xe/2193186 - lexisgoo v2.7
http://www.pempi.co.kr/xe/2193236 - Cobuild(영영사전)
http://www.pempi.co.kr/xe/2193362 - StudyBox 1.71(암기 프로그램)
http://www.pempi.co.kr/xe/2193342 - HandMark Oxford 1.0 Dictionary(영영사전)
http://www.pempi.co.kr/xe/2193580 - EBPocket v1.08a
http://www.pempi.co.kr/xe/2194899 - Jplayer
http://www.pempi.co.kr/xe/2195436 - DioHanDic
http://www.luluvoca.com/cust/cust04.htm - Luluvoca(룰루보카 // 깜빡이, 반쪽이// 단어 외우는 프로그램)
http://daysari.tistory.com/69 - MetroDic(지하철 사전)

 

게임

http://www.pempi.co.kr/xe/2193687 - USB Game Pad Driver
http://www.pempi.co.kr/xe/2193258 - YameCE
http://www.pempi.co.kr/xe/2195479 - gnuboy CE 0.9.13-0.71 ?
http://www.pempi.co.kr/xe/2194709 - Pocket GBA
http://www.pempi.co.kr/xe/2193255 - MorphGear 2.3.0.2
http://www.pempi.co.kr/xe/2193252 - Pocket DOS 1.10.0
http://www.pempi.co.kr/xe/2193474 - Neko Project 2 v0.81a
http://www.pempi.co.kr/xe/2195458 - Final Burn v0.014
└ http://www.pempi.co.kr/xe/2194717 - 캐시 생성
http://www.pempi.co.kr/xe/2192460 - ScummVM 0.40 + 원숭이섬의 비밀 1&2
http://www.pempi.co.kr/xe/2193261 - ScummVM 0.41
http://www.pempi.co.kr/xe/2192387 - Warfare Incorporated v1.2
hhttp://daysari.tistory.com/119 - Bejeweled 2 1.31(WVGA) // 1.30(VGA)
http://www.pempi.co.kr/xe/2192369 - 지뢰찾기
http://www.pempi.co.kr/xe/2192428 - 넥시오 부르마블
http://www.pempi.co.kr/xe/2192414 - 고스톱, 오목, 오델로(480x272)
http://www.pempi.co.kr/xe/2194477 - 푸쉬푸쉬(480x272)
http://www.pempi.co.kr/xe/2194468 - 그림퍼즐(480x272)
http://www.pempi.co.kr/xe/2194462 - 팩맨(320x240?)
http://www.pempi.co.kr/xe/2194459 - 맞고(480x272)
http://www.pempi.co.kr/xe/2192393 - ICBM 레이저
http://www.pempi.co.kr/xe/2192495 - Astraware BookWorm v1.15
http://www.pempi.co.kr/xe/2192489 - Astraware StarPop v1.00
http://www.pempi.co.kr/xe/2192483 - Hexacto The Emperor's Mahjong 1.10(마작?)
http://daysari.tistory.com/124 - Astraware Sudoku 1.50(VGA) // 1.41(WVGA)
http://www.pempi.co.kr/xe/2193489 - Mobirate Sudoku Pro 2 v2.0.1
http://www.pempi.co.kr/xe/2192471 - 3D 테트리스
http://daysari.tistory.com/10 - Astraware Zuma v1.03
http://www.pempi.co.kr/xe/2192468 - 도서관 버전 고스톱(?)
http://www.pempi.co.kr/xe/2192862 - 고도리몽 0.98b2
http://www.pempi.co.kr/xe/2192770 - 류경 바둑
http://www.pempi.co.kr/xe/2193345 - GnuGo(바둑) 2.6.5
http://www.pempi.co.kr/xe/2192764 - 사다리 타기
http://www.pempi.co.kr/xe/2194036 - Pocket War(턴제전략)
http://www.pempi.co.kr/xe/2194022 - Rabbit Wars(턴제 전투 액션)
http://www.pempi.co.kr/xe/2194011 - Medieval Heroes 2 v1.10(턴제전략)
http://www.pempi.co.kr/xe/2192742 - Transport Tycoon 0.3.4
http://www.pempi.co.kr/xe/2193629 - Transport Tycoon 0.5.0RC5
http://www.pempi.co.kr/xe/2192628 - Hexactos Kasparov Chessmate v1.0.9(체스)
http://www.pempi.co.kr/xe/2192616 - StartQ v4.1
└ http://www.pempi.co.kr/xe/2194132 - Tray(자판선택 프로그램)
http://www.pempi.co.kr/xe/2192585 - Astraware Mummy Maze v2.35
http://daysari.tistory.com/164 - Tmax
http://www.pempi.co.kr/xe/2194201 - Machine at War(실시간 전략 시뮬)
http://www.pempi.co.kr/xe/2192512 - 심시티 2000
http://www.pempi.co.kr/xe/2192509 - Astraware Chuzzle v1.11
http://www.pempi.co.kr/xe/2192929 - WordWiser(영어단어 공부게임)
http://www.pempi.co.kr/xe/2192924 - Riversi(오델로)
http://www.pempi.co.kr/xe/2192909 - Pocket Chess
http://www.pempi.co.kr/xe/2192897 - 마작형 사천성
http://www.pempi.co.kr/xe/2195428 - Atomic Cannon v3.0
http://www.pempi.co.kr/xe/2195425 - Machines at War v1.2(실시간 전략 시뮬)
http://www.pempi.co.kr/xe/2192869 - Astraware CrazyDaisy v1.10
http://www.pempi.co.kr/xe/2192799 - Resco Gomoku(오목)
http://www.pempi.co.kr/xe/2192793 - 부루마루 오목(QVGA)
http://www.pempi.co.kr/xe/2192793 - 부루마루 오목(WVGA)
http://daysari.tistory.com/190 - GemDrops v1.0
http://daysari.tistory.com/188 - SuperSid v2.1(WVGA // 팩맨)
http://www.pempi.co.kr/xe/2193189 - Sabotage(낙하산 격추 게임)
http://www.pempi.co.kr/xe/2193222 - BeFlowered(비주얼드 화투)
http://www.pempi.co.kr/xe/2193216 - Astraware Pixelus v1.0
http://www.pempi.co.kr/xe/2193207 - Astraware Rocket Mania v1.11
http://www.pempi.co.kr/xe/2193321 - VT Pocket Tennis v1.0
http://www.pempi.co.kr/xe/2193318 - Strategic Assault v1.85(전략)
http://www.pempi.co.kr/xe/2193315 - SpaceRockKiller v1.2(슈팅)
http://www.pempi.co.kr/xe/2193312 - Sea Strike v1.0(슈팅)
http://www.pempi.co.kr/xe/2193309 - Quartz v1.0.0(퍼즐)
http://www.pempi.co.kr/xe/2193306 - Power Hit Baseball 2004 plus v1.0
http://www.pempi.co.kr/xe/2193303 - MightCraft(퍼즐 // 트라이얼 인듯..)
http://www.pempi.co.kr/xe/2193300 - Matery 3D v1.01(퍼즐)
http://www.pempi.co.kr/xe/2193297 - Marble Mania 2 v1.3(퍼즐)
http://www.pempi.co.kr/xe/2193294 - Lemonade v1.0.1(타이쿤 // 경영)
http://www.pempi.co.kr/xe/2193291 - Turbo Invaders v2.1(슈팅)
http://www.pempi.co.kr/xe/2193288 - Hexacto Soccer Addict
http://www.pempi.co.kr/xe/2193285 - Hexacto Baseball Addict v1.0.6
http://www.pempi.co.kr/xe/2193282 - FooFighter v1.10(슈팅)
http://www.pempi.co.kr/xe/2193279 - Done In 50 Seconds v1.14(차 빼내기 게임)
http://www.pempi.co.kr/xe/2193276 - Candy Train v1.2(퍼즐)
http://www.pempi.co.kr/xe/2193273 - Blazer(슈팅)
http://www.pempi.co.kr/xe/2193270 - BattleShip 1.06(전략?;;)
http://www.pempi.co.kr/xe/2193267 - BattleZone(슈팅 // 배틀시티 같은 게임)
http://daysari.tistory.com/16 - Astraware Insaniquarium Deluxe(광란의 수족관) v1.0
http://www.pempi.co.kr/xe/2193371 - Mr.Genius 1(두뇌게임 // QVGA)
http://www.pempi.co.kr/xe/2193368 - Solitaire City v2.0(카드게임 모음)
http://www.pempi.co.kr/xe/2193365 - Slay(보드? 전략?)
http://www.pempi.co.kr/xe/2193359 - Interstellar Flames v1.01(슈팅)
http://www.pempi.co.kr/xe/2193351 - Martians(슈팅 ㄱ-)
http://www.pempi.co.kr/xe/2193339 - GanstaRace v1.1
http://www.pempi.co.kr/xe/2193333 - Par 72 Golf v1.0
http://www.pempi.co.kr/xe/2193327 - FIFA 2002
http://www.pempi.co.kr/xe/2193330 - FIFA 2002 GX.DLL
http://www.pempi.co.kr/xe/2193428 - 배구
http://www.pempi.co.kr/xe/2193422 - Astraware SuperSlyder(퍼즐)
http://www.pempi.co.kr/xe/2193419 - Astraware Super Wild Wild Words(워드퍼즐)
http://www.pempi.co.kr/xe/2193395 - Warloads 2 v1.02.11
http://www.pempi.co.kr/xe/2193389 - AquaForce(슈팅) 1/2
http://www.pempi.co.kr/xe/2193392 - AquaForce(슈팅) 2/2
http://daysari.tistory.com/184 - Spot!(틀린그림찾기)
http://www.pempi.co.kr/xe/2193383 - Trubo Reaction v1.0
http://www.pempi.co.kr/xe/2193492 - 일단맞고 v0.2
http://www.pempi.co.kr/xe/2193495 - 일단맞고 Skin_WVGA
http://www.pempi.co.kr/xe/2193498 - 일단맞고 Skin_WQVGA
http://www.pempi.co.kr/xe/2193486 - Astraware MoonFighter v1.0
http://www.pempi.co.kr/xe/2193483 - Binoteq Shark Attack v1.0
http://www.pempi.co.kr/xe/2193471 - Pocket Mini Golf 2
http://www.pempi.co.kr/xe/2193468 - Fire Drill(액션)
http://www.pempi.co.kr/xe/2193445 - 스마트 마종(사천성?)
http://daysari.tistory.com/175 - BoxiKon 1.5.2(QVGA) // 1.4.3(VGA)
http://www.pempi.co.kr/xe/2193554 - Viex Microcircuit v1.1(써킷관리)
http://www.pempi.co.kr/xe/2193551 - Click Ball v1.0
http://www.pempi.co.kr/xe/2193539 - Astraware Bzzz v2.12(액션?;;;)
http://www.pempi.co.kr/xe/2193531 - Naughty Worm v1.01(땅따먹기)
http://www.pempi.co.kr/xe/2193519 - Snow Rally City Stage v1.1
http://www.pempi.co.kr/xe/2193516 - Snow Rally Canada v1.1
http://www.pempi.co.kr/xe/2193510 - Brain Storm v1.1(중력 이용게임?)
http://www.pempi.co.kr/xe/2193504 - InDev Software Spider v1.13
http://www.pempi.co.kr/xe/2193563 - BugLord v1.0(전략시뮬)
http://www.pempi.co.kr/xe/2193879 - K-Rally(이거 장시간하다가 키가.. ㄷㄷ;;; 무서운 게임)
http://www.pempi.co.kr/xe/2193868 - Ancient Evil(3D RPG // 액티브 싱크)
└ http://cafe.naver.com/upop/8728 - Ancient Evil(Cab ver)
http://www.pempi.co.kr/xe/2193865 - Virtual Pool Mobile v1.78(포켓볼)
http://daysari.tistory.com/135 - Wdaft(그냥 대충 ..;;)
http://www.navinside.com/bbs/zboard.php?id=pds&page=1&sn1=&divpage=1&category=1&sn=off&ss=on&sc=on&select_arrange=headnum&desc=asc&no=3198 - cedigger
http://www.pempi.co.kr/xe/2194188 - Gngeo 0.7.6
└ http://www.pempi.co.kr/xe/2194191 - 바이오스
└ http://www.pempi.co.kr/xe/2194193 - 메탈슬러그 1
└ http://www.pempi.co.kr/xe/2195420 - 킹오브 파이터 99
http://www.navinside.com/bbs/zboard.php?id=pds&page=1&sn1=&divpage=1&category=1&sn=off&ss=on&sc=on&keyword=파이프&select_arrange=headnum&desc=asc&no=769 - 파이프 연결
http://www.pempi.co.kr/xe/2195444 - FireHawk v1.23
http://www.pempi.co.kr/xe/2195441 - Azgard Defence(900시리즈는 포기하시기를 ㅠ..)
http://daysari.tistory.com/9 - Astraware FruitFrolic v1.25
http://daysari.tistory.com/14 - Snails
http://daysari.tistory.com/15 - Starcraft v0.18
http://daysari.tistory.com/80 - Doom Legacy(qvga)
http://daysari.tistory.com/41 - Pocket Music Box(qvga)
http://daysari.tistory.com/59 - Warcraft WQVGA, QVGA
http://daysari.tistory.com/62 - 부루마루 장기
http://daysari.tistory.com/110 - NumptyPhysics(크레용 피직스 게임이랑 비슷 // 중력적용 게임)
http://daysari.tistory.com/120 - HotField v1.01
http://daysari.tistory.com/138 - Call of Duty 2
http://daysari.tistory.com/147 - TowerTrap v1.6
http://daysari.tistory.com/160 - Need For Speed - High Stakes Beta
http://daysari.tistory.com/161 - Jack or 100 Ways to Barbecue v1.0
http://daysari.tistory.com/167 - Age of Empires(qvga // 문제가 심각한?..)
http://cafe.naver.com/maxianpmp/108107 - PopDrop
http://cafe.naver.com/maxianpmp/87571 - Drum Kit Ace
http://cafe.naver.com/maxianpmp/27605 - Li-nuggz v1.1(팡팡류)
http://cafe.naver.com/maxianpmp/26077 - Tower Trick v1.0.1
http://cafe.naver.com/maxianpmp/26108 - Bust'EM2(벽돌깨기)
http://cafe.naver.com/maxianpmp/27254 - PocketJig(퍼즐 맞추기)
http://cafe.naver.com/maxianpmp/25917- Ghost Hunt
http://cafe.naver.com/maxianpmp/21244 - Blitzkrieg War In Europe v1.53(전략시뮬)



by Anna 안나 2010. 11. 20. 01:40

웹사이트를 디자인할 때 보통 포토샵 등의 소프트웨어를 사용하여 미리 전체 레이아웃을 디자인을 하고,

완성된 디자인에서 이미지를 슬라이스하여 HTML 문서에 붙여 가는 작업으로 진행해 나갑니다.

이러한 웹 디자인의 작업에 참고가 될만한 포토샵(PSD) 레이아웃 트레이닝 사이트를 모아 봤습니다.

근데 모두 영문 사이트네요..ㅋㅋㅋ (전 봐도 몰겠다..ㅋ)

 

1. 포토샵으로 그런지(Grunge) 웹 디자인 하기
http://psd.tutsplus.com/interface-tutorials/how-to-create-a-grunge-web-design-in-photoshop/

 

2. 스튜디오 레이아웃 디자인(Wordpress Layout)
http://www.talk-mania.com/web-layouts/43737-design-studio-layout-wordpress-layout.html

 

3. 겔러리 웹사이트  레이아웃 디자인
http://psdvibe.com/2009/02/16/website-gallery-layout-design/

 

4. Create a Sleek, High - End Web Design from Scratch
http://psd.tutsplus.com/interface-tutorials/create-a-sleek-high-end-web-design-from-scratch/

 

5. Carbon Fiber Layout
http://psdlearning.com/2008/08/carbon-fiber-layout/

 

6. Design a Cartoon Grunge Web site Layout
http://psd.tutsplus.com/interface-tutorials/design-a-cartoon-grunge-website-layout/

 

7. Tutorial Site Blog Design
http://psdvibe.com/2009/02/11/tutorial-site-blog-design/

 

8. Create a Magic Night Themed Web Design from Scratch in Photoshop
http://psd.tutsplus.com/tutorials/interface-tutorials/create-a-magic-night-themed-web-design-from-scratch-in-photoshop/

 

9. Full Photoshop Web Design - Journal
http://tutocity.com/index.php/photoshop/full-photoshop-web-design-journal.html

 

10. Photographer layout - Portfolio layout
http://www.talk-mania.com/web-layouts/42842-photographer-layout-portfolio-layout.html

 

11. Design a Unique Grungy Website Layout
http://psdfan.com/designing/design-a-unique-grungy-website/

 

12. Old paper layout - Great portfolio layout
http://www.talk-mania.com/web-layouts/43999-old-paper-layout-great-portfolio-layout.html

 

13. Making your own portfolio web page
http://www.adobetutorialz.com/articles/2967/1/Making-your-own-portfolio-web-page

 

14. Design an Awesome Band Website Template
http://www.photoshopstar.com/web-design/band-website-template/

 

15. Sound System Studio Web Layout
http://www.adobetutorialz.com/articles/2867/1/Sound-System-Studio-Web-Layout

 

16. Vector Layout - grunge vector layout
http://www.talk-mania.com/web-layouts/43769-vector-layout-grunge-vector-layout.html

 

17. Design Lab TV Styled Layout
http://psdvibe.com/2009/03/04/design-lab-tv-styled-layout/

 

18. How a Simple Layout Can Be Mixed 'n'Matched with Patterns, Photos and Backgrounds
http://psd.tutsplus.com/tutorials/interface-tutorials/how-a-simple-layout-can-be-mixed-n-matched-with-patterns-photos-and-backgrounds/

 

19. Photo Portfolio Web Page Layout
http://www.adobetutorialz.com/articles/2939/1/Photo-Portfolio-Web-Page-Layout

 

20. Online Photo Portfolio
http://www.adobetutorialz.com/articles/2896/1/Online-Photo-Portfolio

 

21. Creative Studio Web Page
http://www.adobetutorialz.com/articles/3017/1/Creative-Studio-Web-Page

 

22. Web Layout for Italian Restaurant
http://www.adobetutorialz.com/articles/2510/1/Web-Layout-for-Italian-Restaurant

 

23. Design Agency Layout - Tutorial 151
http://www.talk-mania.com/web-layouts/39171-design-agency-layout-tutorial-151-a.html

 

24. Graphic Design Studio Web Layout
http://www.adobetutorialz.com/articles/2810/1/Graphic-Design-Studio-Web-Layout

 

25. Computer Store Web Layout
http://www.adobetutorialz.com/articles/2556/1/Computer-Store-Web-Layout

 

26. Professional Web Layout for Business Solutions
http://www.adobetutorialz.com/articles/2751/1/Professional-Web-Layout-for-Business-Solutions

 

27. Chocolate Pro WordPress Style Layout
http://psdvibe.com/2009/02/08/chocolate-pro-wordpress-style-layout/

 

28. Hand drawn layouts - hottest design trends
http://www.talk-mania.com/web-layouts/43582-hand-drawn-layouts-hottest-design-trends.html

 

29. Professional WebLayout for Business Company
http://www.adobetutorialz.com/articles/2552/1/Professional-WebLayout-for-Business-Company

 

30. Design Studio Layout
http://psdvibe.com/2009/02/22/design-studio-layout/

 

31. Interior Design Layout
http://www.talk-mania.com/web-layouts/40144-interior-design-layout.html

 

32. Real Estate template
http://bwebi.com/real-estate-template.html

 

33. Design a Clean Business Layout
http://psdfan.com/designing/design-a-clean-business-layout/

 

34. Create a Vibrant Modern Blog Design in Photoshop
http://www.blog.spoongraphics.co.uk/tutorials/create-a-vibrant-modern-blog-design-in-adobe-photoshop

 

35. Arhitecture bureau Layout / Real Estate website
http://www.talk-mania.com/web-layouts/42793-arhitecture-bureau-layout-real-estate-website.html

 

36. Design a Web Template using the "960 Grid System"
http://photoshoptutorials.ws/photoshop-tutorials/layouts/design-a-web-template-using-the-960-grid-system/page-5.html

 

37. Web 2.0 vector layout
http://www.talk-mania.com/web-layouts/42618-web-2-0-vector-layout.html

 

38. Create a Dark Themed Web Design from Scratch
http://psd.tutsplus.com/interface-tutorials/create-a-dark-themed-web-design-from-scratch/

 

39. Designing Personal Web Page Layout
http://www.illustrateddesigns.com/articles/2495/1/Designing-Personal-Web-Page-Layout/Page1.html

 

40. Gaming Layout # 3
http://hv-designs.co.uk/2008/10/30/gaming-layout-3/

 

41. Design Studio Layout Tutorial
http://hv-designs.co.uk/2008/09/01/design-studio-layout-tutorial/

 

42. Business Layout # 2
http://hv-designs.co.uk/2008/09/28/business-layout-2/

 

43. Interior Design Layout
http://hv-designs.co.uk/2008/10/26/interior-design-layout/

 

44. Car Layout # 3
http://hv-designs.co.uk/2008/08/28/car-layout-3/

 

45. Personal Portfolio Layout # 2
http://hv-designs.co.uk/2008/10/03/personal-portfolio-layout-2/

 

46. Video Sharing Layout
http://hv-designs.co.uk/2008/07/01/video-sharing-layout/

 

47. Hosting Layout
http://hv-designs.co.uk/2008/08/18/hosting-layout/

 

48. Wordpress Mockup Layout
http://hv-designs.co.uk/2008/07/29/wordpress-mockup-layout/

 

49. Web Design Layout # 4 Tutorial
http://hv-designs.co.uk/2007/11/18/web-design-layout-4-tutorial/

 

50. Portfolio Layout # 6
http://hv-designs.co.uk/2008/06/18/portfolio-layout-6/



http://cafe.naver.com/codestudy/826
by Anna 안나 2010. 8. 8. 22:54
http://blog.naver.com/creamhouse7
by Anna 안나 2010. 7. 20. 20:50
http://csi.nfshost.com/goodies/


  • Facebook Chat
  • It’s not all that irrelevant now that Digsby and Adium support FB chat :)
  • Download for Mac
  • Google Calendar
  • A suitable companion for your Fluid-generated Gmail.app.
  • Download for Mac
  • Gmail: Remixed
  • The Gmail icon retooled and given a fresh coat of paint. Features 6 luscious colors.
  • Download for Mac

by Anna 안나 2010. 7. 20. 20:12
자바스크립트 메뉴 & CSS 메뉴 11가지입니다.
링크로 이동하시면 소스와 사용방법등에 대해서 살펴보실수 있고
소스파일도 다운받으실수 있습니다.
dTree메뉴와 Dock Menu, imagemenu 메뉴등은 워낙 유명하니 다들 많이 보셨을겁니다.

3번째 Sexy Drop Down 메뉴는 데모페이지가 상단 헤더부분까지 있습니다.
좀 어두은것 말고는 상당히 구미가 당기네요.



dTree JavaScript tree menu 




http://loved.pe.kr/entry/Javascript-CSS-Menus
by Anna 안나 2010. 7. 20. 20:11


Mac OSX Dock 스타일 CSS 메뉴입니다.
제가 사용중인 메타추천버튼 하고 비슷한 효과를 보여줍니다.
마우스 룰오버시 쑤~욱 커지는거죠. 데모페이지를 살펴보시면 됩니다.
CSS 메뉴라서 효과가 좀 부족해 보이지만
그럭저럭 이미지수정하시면 블로그나 홈페이지등에 메타추천버튼등으로 사용하긴 좋을듯 하네요.
첨부파일에 CSS 메뉴의 이미지와 소스가 모두 들어있으니 다운받으시고 살펴보시면 됩니다.


데모페이지

fisheyemenu.zip

License: GNU/GPLv3

Internet Explorer 7+ and 8+,
Firefox 3+,
Google Chrome,
Safari 3.2+,
Opera 9.52+,
and Konqueror 3.5.7+. However, the expanding of images next to the active image with the use of "+" selector only works on IE7+, IE8+, Opera 9.52+, and Konqueror 3.5.7+.


자바스크립트 메뉴로 보다 화려하게 동작하는 메뉴가 있기는 하지만
티스토리에서 완벽하게 동작이 안되더군요. 텍스트큐브는 해보나 마다 더심할것같고요.
XpressEngine 레이아웃 적용해서 배포하던 스킨이 있었는데 골치아파서 다 날려버렸네요.
javascript MacOsX euDock 페이지로 가시면
실동작 메뉴와 상세사용방법 모든소스가 들어있는 첨부파일을 받으실수 있습니다.

http://loved.pe.kr/entry/CSS-Fish-Eye-Menu
by Anna 안나 2010. 7. 20. 20:11



jQuery 를 이용한 아이팟 스타일의 드롭다운 메뉴입니다.
요즘 아이팟이 유행인지라 아이팟에 관련된 것들이 많이 눈에 띄네요.

Firefox 2 & 3, Internet Explorer 6-8, Safari 3, and Opera 9.6:


jQuery Menu 로 가시면 상세한 사용방법과 데모들이 있습니다. 물론 영문으로요. ^^

첨부파일에 모든소스가 들어있습니다.
대충 어느정도의 테그편집이 가능하신분은 index.html 직접 실행시켜보신후
index.html 파일을 수정 사용하시는게 훨씬 빠를겁니다.



아이팟을 사용해본적이 없어서 메뉴가 저런식을 나오는지 모르겠지만..
상당히 쓸만한 메뉴라고 생각되네요.
해당페이지에서 자세하게 찾아보지는 않았지만 jQuery가  GPL이므로 해당자료도 GPL 일겁니다.


http://loved.pe.kr/entry/%EC%95%84%EC%9D%B4%ED%8C%9F-%EC%8A%A4%ED%83%80%EC%9D%BC-%EB%93%9C%EB%A1%AD%EB%8B%A4%EC%9A%B4-%EB%A9%94%EB%89%B4-iPod-DropdownDrilldown-Menu
by Anna 안나 2010. 7. 20. 20:08

There have already been quite a few tutorials around documenting the making of these sleek, supermarket-style badges, but none of them have made them into subscribe badges! Well I actually have no proof of that assumption, but anyway.

In this Photoshop tutorial we’ll be making those cool supermarket-style badges, then we’ll be turning them into subscribe buttons for your website, a must-have for any blog!

Nice and Simple Subscribe Badges for your Blog

1. Background

Well, the background obviously isn’t very important, but we’ll make something nice and simple for our badges anyway. Otherwise you could open up a blog template you have been working on, so you can implement the badge there.

I’ll be using a document size of 800 x 600 pixels for this, pretty small easy to work with size. After you’ve made a new document, fill the background with a dark color. In this case I used a dark brown (#2e1f13).

OK, after you’ve got the background color set, you might be happy with that, or you can find a nice wood texture and put it on the background as well.

Wood Texture Background

OK, so if you want some nice wooden board textures, you should check out CG Textures. Now, if you’ve got a texture, copy it onto the canvas and resize it. After this, lower the opacity and mess with the layer modes to blend it in with the color a little more.

You may need to repeat this step a few times using different layer modes and opacities.

Wood Texture Layers and Settings

2. Badge Base

Let’s create the base of our badge now. Firstly, find and get out the elliptical marquee tool, then make a selection in the middle-area of your canvas. Create a new layer, then fill your selection with an appropriate color.

Badge Shape Created

Alright, now you have the shape, we need to cut away a small corner and rotate it. To do this, first get out the polygonal lasso tool, then select a corner of your shape like so:

Polygonal Lasso Tool Selection

Right-click your selection and go to layer via cut, this will cut the selected pixels and place them in a new layer. Rotate your peel effect layer (edit > transform > rotate 180) then you may need to move it slightly so it’s exactly on the corner.

Lastly, fill your little shape with white or another very light color, so it contrasts well against the base layer.

Shape Adjusted and Filled with White

Now we’ve got a cool peeling effect. I’m hoping I’ve been explaining thoroughly enough so far! ;)

3. Effects (Layer Styles)

Now, how about we give the badge a little more depth? What we want to do is apply a Gradient Overlay layer style for each of our layers, so right-click your layer and go into the Blending Options.

Note: You may have to move the gradient around a little bit, do this by dragging your mouse around below the blending options box.

Gradient Layer Styles Added

Much nicer.

4. Add Text

Now let’s add some text. Get out the horizontal type tool (just the regular one) and write out something like ‘Subscribe Today!’ on two lines.

Delicious Font/Text Added

Note: The font used above is called Delicious, and it’s a free font that you can download from here.

Alright, now you’ve got some nice text done, you’ll want to rotate and situate it on top of your badge. While rotating (ctrl+t) you may want to size it down so it’s more of a snug fit.

Text Rotated and Resized

Alright, looking nice! Lastly to make the text stand out a little more, you should add a slight Drop Shadow layer style.

Additional

To finish off, you should merge all of your badge layers together then size the whole thing down to about 25% of it’s original size (depending on what size you made the original).

You should also try different things with the badges, such as adding a grungy layer mask, or going with the traditional style of the RSS icon.

Nice and Simple Subscribe Badges for your Blog

Thanks for reading everyone, if you have a question, a suggestion or a comment, please leave a comment below using the form, or send me an email.

PSD file

As usual you can of course download the PSD file from this tutorial, it includes all of the layers that you might need. And as usual, you should only use this PSD file for learning purposes, you’d probably be best off making your own badge by using the tutorial!

Download PSD (4.9mb) Right-click the link and click “save target as…” or “save link as…”

Subscribe

If you enjoyed this tutorial, then you may be interested in subscribing to PhotoshopStar to get updates via email or feed reader! :)



http://www.photoshopstar.com/web-graphics/nice-simple-subscribe-badges/
by Anna 안나 2010. 7. 20. 20:00

By this time I’m sure, the superheroes don’t have particular superpowers. The crisis are still running and I certainly cannot save the world, dammit! But… I’ve coded the PSD Template makingSEO and in this post you can read some quick tips used in the psd-to-html conversion (in case you missed the first part, please read Design A Clean And Fresh Company Website In Photoshop).

In previous tutorials we have learned some techniques on how to convert a design mockup into a complete web-page using xhtml and css, so the following information will be only a quick review on code. If you want more suggestions on psd-to-html conversion you can take a look at these articles:

Below there are the final result of the makingSEO psd-to-html conversion and the link to download the complete CSS Template. Don’t forget, the source files are released under the Creative Common License (CC 3.0 Attribution) also for commercial use.

Final Result, Css Template

Here you can see a preview image and a live demo. You can also download the zip archive with the complete CSS template.
makingSEO CSS Template

Download Source
Download Source

Coding makingSEO

We can partition the layout in five sections: header, down-header, contents, sidebar and footer. Besides we can use two general div, main_container and container. The first to add the top-background and the second to keep in 960 px the segments (header, down header, contents and sidebar).
makingSEO CSS Template

Now is time for the code. This section of the post will show the essential steps to code the psd template.
In the folder “makingseo” we put in “images” folder and the necessary files: “index.html” and “style.css” and “reset.css” (generally I use the Yahoo! YUI Reset CSS, but in this case we test the reset file included in Blueprint CSS Framework).

Below the complete “reset.css” file (you can optimize it for your needs).

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}

body {
line-height: 1.5;
}

table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

a img { border: none; }

Step 1 – Main Structure

The markup for the main structure (edit “index.html”).

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>makingSEO - Improve Your Business | A free CSS Template | made in PV.M Garage</title>
<link href="reset.css" rel="stylesheet" type="text/css" /><!-- blueprint css reset -->
<link href="style.css" rel="stylesheet" type="text/css" /><!-- css style for makingSEO -->
</head>
<body>

<div id="main_container"><!-- for general background -->
<div class="container clearfix"><!-- to keep in 960 pixels the segments -->

<div id="header"><!-- here we'll add logo and menu -->
</div>

<div id="down_header"><!-- here we'll add slogan, screenshot and call-to action button -->
</div>

<div class="contents"><!-- here we'll add the info boxes -->
</div>

<div class="sidebar"><!-- here some side information -->
</div>

</div><!-- end container -->

<div id="footer"><!-- here the footer -->
</div>

</div><!-- end main_container -->

</body>
</html>

To reproduce background we use the following image.
makingSEO CSS Template

Below the css rules.

@charset "utf-8";
/* CSS Document */

body {
background: #f5f5f5;
font-family: Verdana, Georgia, “Lucida Sans Unicode”, sans-serif;
font-size: 12px;
color: #666;
}

/* General */

:focus {
outline: 0;
}

a {
text-decoration: none;
}

ul {
list-style-type:none;
color: #fff;
}

/* Container */

#main_container {
background: url("images/bck.jpg") repeat-x top; /* General Background */
}

.container {
width: 960px; /* here the width for the segments */
margin: auto;
}

.clearfix:after {
content: "\0020";
display: block;
height: 0;
clear: both;
visibility: hidden;
overflow: hidden;
}

Step 2 – Header with Logo and Menu

Now we add logo and menu in the header. Below there are the images exported from psd.
makingSEO CSS Template

Below the (x)html code for header.

<div id="header">
<div class="logo">
<h1><a href="#">makingSEO - Improve Your Business</a></h1>
</div>
<div class="menu">
<ul>
<li><a href="#">Services</a></li>
<li><a href="#">Tools</a></li>
<li><a href="#">Strategies</a></li>
<li><a href="#">Prices</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>

And now, the style.

/* Header */

#header {
height: 156px;
}

.logo {
float: left;
background: url("images/light_head.png") no-repeat top left;
height: 156px;
}

.logo h1 {
text-indent: -9999px;
margin-top: 40px;
}

.logo h1 a {
display: block;
background: url("images/logo.png") no-repeat top;
width: 398px;
height: 61px;
}

.menu ul {
float: right;
margin-top: 5px;
padding-bottom: 10px;
width: 377px;
text-align: center;
background: url("images/dashed_h.png") no-repeat bottom;
}

.menu ul li {
display: inline;
padding: 10px 10px 70px 10px;
background: url("images/dashed_v.png") no-repeat top right;
margin-left: -5px;
}

.menu ul li a {
color: #fff;
padding-bottom: 70px;
}

.menu ul li:hover {
background: url("images/menu_hov.png") repeat-x top right;
}

Step 3 – Slogan and Screenshot in Down-Header

In Down-Header segment we add a direct slogan, a screenshot of a website that rocks with the help of makingSEO team and a call-to-action button. Below the pictures used to complete this section of the web-page.
makingSEO CSS Template

Below you can see the html code for the down-header.

  <div id="down_header">
<div class="d_h_left">
</div>
<div class="d_h_right">
<span class="button"><a href="#"></a></span>
</div>
</div>

The style for this segment.

/* Down Header */

#down_header {
height: 320px;
padding-top: 25px;
}

.d_h_left {
float: left;
width: 520px;
height: 308px;
margin-left: -14px;
background: url("images/screenshot.png") repeat-x top left;
}

.d_h_right {
float: right;
width: 450px;
height: 138px;
margin: 16px 0 0 4px;
background: url("images/slogan.png") no-repeat top left;
}

.button a {
display: block;
width: 324px;
height: 70px;
position: relative;
top: 145px;
left: 61px;
background: url("images/call-but.png") no-repeat 0px -70px;
}

.button a:hover {
background: url("images/call-but.png") no-repeat 0px 0px; /* CSS Sprites technique for the button*/
}

Step 4 – The Contents

The left side is the core of the web-page in which the visitors have the opportunity to know more about the Company. We use some icones and a soft dashed grid.
makingSEO CSS Template
makingSEO CSS Template

We write the html code…

<div class="contents">
<div class="post_cont">
<h1 class="top_left"><a href="#">We Study the Best Solutions to Improve Your Visibility</a></h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo</p>
</div>
<div class="post_cont">
<h1 class="top_right"><a href="#">In One Month You Could Be in the First Page of Google</a></h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
<span class="button_post_g"><a href="#"></a></span>
</div>
<div class="post_cont">
<h1 class="down_left"><a href="#">Organize Your Business with our Experts</a></h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p>
</div>
<div class="post_cont">
<h1 class="down_right"><a href="#">We Study the Best Solutions to Improve Your Visibility</a></h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
<span class="button_post_o"><a href="#"></a></span>
</div>
</div>

… and the rules for the style of the contents.

/* Contents */

.contents {
float: left;
width: 690px;
}

.post_cont {
width: 310px;
float: left;
margin: 0 30px 30px 0;
background: url("images/dashed_v_g.png") no-repeat right;
height: 300px;
}

.post_cont h1 a {
padding-bottom: 0px;
font-size: 14px;
color: #424242;
display: block;
}

.post_cont h1 a:hover {
color: #d5943f;
}

.post_cont p {
margin-left: 10px;
padding: 15px 10px 30px 0;
background: url("images/dashed_h_g.png") no-repeat top right;
}

h1.top_left a {
background: url("images/ico_top_left.png") no-repeat left center;
padding: 20px 5px 20px 85px;
}

h1.top_right a {
background: url("images/ico_top_right.png") no-repeat left center;
padding: 20px 5px 20px 70px;
}

h1.down_left a {
background: url("images/ico_down_left.png") no-repeat left center;
padding: 20px 5px 20px 72px;
}

h1.down_right a {
background: url("images/ico_down_right.png") no-repeat left center;
padding: 20px 5px 20px 72px;
}

span.button_post_g a, span.button_post_o a {
display: block;
width: 256px;
height: 46px;
position: relative;
top: -10px;
left: 83px;
}

span.button_post_g a {
background: url("images/call-but-post.png") no-repeat right top;
}

span.button_post_o a {
background: url("images/call-but-post_o.png") no-repeat right top;
}

Step 5 – The Sidebar

Side information for our page. Below the (x)html code and the style.

  <div class="sidebar">
<div class="sidecont">
<h2>Side Info</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
<div class="sidecont">
<h2>Blog Posts</h2>
<ul>
<li><a href="#">Donec quam felis, ultricies nec, pellentesque eu.</a><span class="side_meta_info">posted by piervix - 12.08</span></li>
<li><a href="#">Donec quam felis, ultricies nec, pellentesque eu.</a><span class="side_meta_info">posted by piervix - 12.08</span></li>
<li><a href="#">Donec quam felis, ultricies nec, pellentesque eu.</a><span class="side_meta_info">posted by piervix - 12.08</span></li>
<li><a href="#">Donec quam felis, ultricies nec, pellentesque eu.</a><span class="side_meta_info">posted by piervix - 12.08</span></li>
</ul>
</div>
<div class="sidecont">
<h2>Working on...</h2>
<p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</p>
<a href="#"><img src="images/img_side.jpg" alt="" /></a>
</div>
</div>

We update the “style.css” files with this lines of code.

/* Sidebar */

.sidebar {
float: right;
margin-top: -50px;
width: 220px;
background: #fff;
border: 1px solid #dcdcdc;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

.sidecont {
margin: 18px 10px;
font-size: 11px;
}

.sidecont img {
margin-top: 10px;
border: 3px solid #bdbdbd;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}

.sidecont h2 {
font-size: 18px;
}

.sidecont p, .sidecont ul li {
padding-top: 7px;
}

.sidecont ul li a {
display: block;
font-weight: bold;
color: #666;
}

.sidecont ul li a:hover {
color: #d5943f;
}

.side_meta_info {
color: #d5943f;
}

Step 6 – The Footer

This segment isn’t included in the main-container div, this for adding the background in the right way. Take a look at the images used.
makingSEO CSS Template

Finally the code for the footer and the credits.

<div id="footer">
<div class="foot_info">
<div class="foot_col_l_c">
<h2>Our Tweets <a href="#">/ Follow Us</a></h2>
<ul>
<li><a href="#"><strong>@virtuosoblogger</strong> 400+ Beautifully Designed Twitter Icons http://ow.ly/oBb6</a></li>
<li><a href="#"><strong>@bkmacdaddy</strong> Bit.ly lowers the bar on URL shortening - http://bit.ly/cMBAc</a></li>
<li><a href="#"><strong>@gaksdesigns</strong> Retro Design and Typography http://bit.ly/1TRunk</a></li>
</ul>
</div>
<div class="foot_col_l_c">
<h2>Work in progress</h2>
<ul class="foot_center">
<li class="foot_ico_1"><a href="#">Sed ut perspiciatis unde omnis iste natus error sit </a></li>
<li class="foot_ico_2"><a href="#">At enim ad minima veniam, quis nostrum</a></li>
<li class="foot_ico_3"><a href="#">At vero eos et accusamus et iusto odio dignissimos ducimus qui</a></li>
</ul>
</div>
<div class="foot_right">
<h2>Work in progress</h2>
<ul>
<li><a href="#"><img src="images/img1.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/img2.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/img3.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/img4.jpg" alt="" /></a></li>
</ul>
</div>
</div>
<div id="credits">
<p><a href="#">makingSEO</a> is released under a <a href="#"><em>Creative Common License</em></a> also for Commercial Use. We hope you'll support <a href="#">PV.M Garage</a>, it is an awesome place for sharing!</p>
</div>
</div>

We update the CSS file with the following rules.

/* Footer */

#footer {
background: url("images/bck_foot.jpg") repeat-x top; /* general background for footer */
}

.foot_info {
margin: auto;
width: 960px; /* keep in 960 pixels the footer contents */
}

.foot_col_l_c {
width: 285px;
float: left;
margin: 20px 35px -30px 0px;
padding: 0px 10px 0px 10px;
height: 300px;
}

.foot_info h2 {
font-size: 20px;
color: #fff;
margin-bottom: 6px;
padding: 8px 0px;
background: url("images/dashed_f.png") no-repeat center bottom;
}

.foot_info h2 a {
color: #306e8f;
background: url("images/ico_foot.png") no-repeat top right;
padding: 10px 45px 10px 0;
}

.foot_info h2 a:hover {
color: #fff;
}

.foot_col_l_c ul li {
padding: 8px 0px;
background: url("images/dashed_f.png") no-repeat center bottom;
}

.foot_col_l_c ul li a {
color: #fff;
display: block;
}

.foot_col_l_c ul li a:hover {
color: #c3dd6c;
}

ul.foot_center li a:hover { /* change hover color */
color: #d5943f;
}

li.foot_ico_1 a {
padding-right: 50px;
margin-right: 11px;
background: url("images/ico_foot_1.png") no-repeat center right;
}

li.foot_ico_2 a {
padding-right: 50px;
margin-right: 8px;
background: url("images/ico_foot_2.png") no-repeat center right;
}

li.foot_ico_3 a {
padding-right: 50px;
margin-right: 12px;
background: url("images/ico_foot_3.png") no-repeat center right;
}

.foot_right {
width: 221px;
float: right;
margin-top: 20px;
}

.foot_right ul {
background: url("images/foot_img_bck.png") no-repeat top left;
margin-left: 5px;
}

.foot_right ul li {
display: inline;
}

.foot_right img {
border: 3px solid #fff;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
margin: 10px 20px 8px 0px;
}

#credits {
clear: both;
margin-bottom: 10px;
}

#credits p {
width: 600px;
text-align: center;
margin: auto;
}

#credits p a {
font-weight: bold;
color: #666;
width: 600px;
text-align: center;
margin: auto;
font-size: 11px;
}

#credits p a:hover {
border-bottom: 1px dotted #666;
}

Conclusions

Yes, this layout is released under the Creative Common License (CC 3.0 Attribution) also for commercial use and you can copy, edit, sell, eat, drink, re-publish it. Remeber it is only a basic xhtml and css template if you have some ideas on how to improve the layout, please share them through the comments (e.g. maybe a slideshow for the screenshit section could be a good solution, but can it save the worls?).

The template has been tested on IE8, Firefox 3.5, Opera and Safari. It have a valid XHTML code.

Thanks fo reading dear friends!

PSD to HTML Services Sponsored on PV.M Garage

I’m sure! You have the necessary skill to convert a PSD mockup in a wonderful website, but if you have many projects in progress you could consider a PSD to HTML Service.

Pixel Crayons

XHTML.pixelcrayons.com (a specialized division of Pixelcrayons) offers high quality hand coded pixel-precise markup services and implementation into skins, themes, CMS, shopping carts and more. They accept files in all common formats (PSD/AI/PNG/PDF) and even existing markup.

Their online Order page details various markup packages offered along with a variety of options for markup and software implementation.
Pixel Crayons

Rapid XHTML

RapidxHTML is a small team of designers and developers, with a wide range of skills and experience. Each of us know our strengths and weaknesses and how these fit into the big picture.
Rapid XHTML

XHTML Chop

XHTML Chop is a team of experienced web design and web programming professionals. They specialize in providing the state-of-the-art PSD to HTML conversion services. they have a talented team that is capable of handling all types of conversion requirements.
XHTML Chop

XHTMLiT

XHTMLiT service is simple! They are W3C Web Standards experts and they have been building and coding website for over 5 years now. XHTMLiT provide coding services to designers, taking the dirty job away so you can do what you are best at, Design!
XHTMLiT



http://www.pvmgarage.com/2009/09/makingseo-coded-free-css-template-with-psd-to-html-tips/
by Anna 안나 2010. 7. 20. 19:59

무료 포토샵 PSD템플릿 레이아웃 사이트들을 또 모아봤습니다.
즐겨찾기에 섞여 있는 것도 있고, 검색결과도 있고 합니다.

조각조각이어서 그렇지, 꽤 많습니다.
deviantart 아닌 이상, 사이트마다 psd 자료만 보지 마시고, 다른 것들도 추천할 만한 것들 많이 있습니다.

A. PSD템플릿

1. http://www.freepsd.com/category/freetemplates/
   페이지 당 10개씩 PSD 템플릿이 있습니다. 현재 psd template이 32개 있습니다.
   적은 편이지만, psd로고나 psd 이미지 자료 들도 있습니다.

  

psd템플릿

   템플릿 이름 누르면, 다운페이지로 이동 됩니다. 다운로드 버튼이 아주 크네요.  

  


2. http://www.free-psd.com/
    여기도 괜챦습니다. 특이하게 색상별로 분류되어 있습니다.
    무료 psd 템플릿입니다.
   

psd 템플릿

3. http://www.buytemplates.net/promotion-templates/free-psd-web-templates.php#
    유료사이트인데, 3개를 데모식으로 무료로 줍니다.
    퀄리티는 좋지만, 대신 이메일 이런거 달라고 합니다.
   

psd 레이아웃

   

4. http://www.e-webtemplates.com/free_Photoshop_templates.aspx?templates=Photoshop&browse=Type
    페이지당 6개씩 9페이지까지 psd파일이 있습니다. 퀄리티는 그냥 그렇습니다.
   

5. http://www.templatesrain.com/free-templates/psd-templates/index.php
   26개 psd 템플릿이 있습니다. 퀄리티는 그냥 그렇습니다.
  

   다운로드는 미리보기페이지에서, 우측 하단에 있습니다.

  

6. http://colorifer.com/website_templates.html
    css 템플릿하고 psd 템플릿하고 같이 들어 있습니다.
   

7. http://www.smashingmagazine.com/2009/05/02/dellistore-a-free-professional-cssxhtmlpsd-template/
    예쁜 상점모양의 템플릿 하나입니다. psd 파일 동봉
   

8. http://www.psdtemplate.com/free-psd-templates/cool-psd-template.html

    psd 레이아웃 템플릿 달랑 2개입니다.
   


    http://www.psdtemplate.com/free-psd-templates/company-psd-template.html
   


9. http://www.ganato.com/free/free_psd_layouts.php
   psd 레이아웃 4개 있습니다. 퀄리티는 괜챦습니다.
   

psd레이아웃


B. deviantart psd 템플릿

    * deviantart 사이트 다운로드법은, 마우스를 왼쪽에 대면, 다운로드 버튼이 나타납니다.

     

deviantart


10. http://majareq.deviantart.com/art/5-Webdesigns-PSD-Pack-119838551

    보통의 5개 웹디자인 PSD레이아웃템플릿

  

11. http://xyphid.deviantart.com/art/Web-Secrets-PSD-INSIDE-108864001
   

12. http://psdtemplate.deviantart.com/art/Orange-by-PSDTemplate-com-114500593

    오렌지 계열의 PSD TEMPLATE
   

13. http://rawtec.deviantart.com/art/PSD-TREE-118646333

    깔끔한 노란계열의 PSD Layout 한개
   

14. http://sharkkk.deviantart.com/art/Cool-Design-Layout-136072388
   

15. http://alert84.deviantart.com/art/Portal-Layout-025-130162146

    잘만들어진 포탈용 psd 레이아웃입니다.

    * 외국의 포탈은 그 사이트(포럼.게시판)만의 포털로, 주로 최근게시물등을 리스팅합니다.

    

무료 psd 템플릿

16. http://mafarioch.deviantart.com/art/Web-2-0-Website-Layout-97658237
    

17. http://berkayuygun.deviantart.com/art/The-BIG-PSD-Istanbul-Portal-105062774
    

18. http://enfero.deviantart.com/art/6-Pack-Free-Layout-PSD-21053011

     무료 psd 템플릿 6개 모음팩
    

19. http://grafon.deviantart.com/art/Free-Web-2-0-PSD-Layout-85639306

     뭔가 약간 모자른, 무료 psd 레이아웃

    


C. 기타 psd 이미지자료
    * 이런 사이트들은 아주 많으니, free psd image 나 free psd resource 등으로 검색해보세요.

1. http://www.aaronovadia.com/clients/photoshopit/freebies.htm
    8번째 자료에 Web 2.0 style psd 레이아웃 있습니다. 포토샵 강좌 결과물 정도입니다.
   

psd 다운로드

2. http://www.instantshift.com/2009/05/29/110-ultimate-round-up-of-free-photoshop-psd-files-and-resources/
    누가 열심히 정리해놨네요. 외국블로그 링크입니다. 퀄리티도 매우 훌륭해요.
    전자제품(주로 휴대폰,아이폰) 및 자동차 등등의 psd 이미지 : deviantart 링크입니다.

   

psd 이미지

3. http://www.1stwebdesigner.com/resources/45-free-design-template-and-psd-files/
    위의 2번사이트하고 비슷합니다. 45개의 여러가지 고화질 psd 파일이 있습니다.
   

psd파일

4. http://www.psgalaxy.com/

    여러 무료 psd 이미지 파일을, 구할 수 있습니다.      

   

psd 자료

5. http://grafon.deviantart.com/art/53-PSD-files-in-one-month-87398804
    그냥 보통의, 약간은  원색적인 53개의 버튼.로고 등의 psd 이미지를 얻을 수 있습니다.
   

psd 다운로드

유용한 링크정보 됐음 합니다. (o^∇^o)

http://jjangfree.tistory.com/748

by Anna 안나 2010. 7. 20. 19:52
http://wefunction.com/2009/04/quality-within-web-design/


Quality is a word that a lot of people like to use when describing their web design services. But what is quality, how do you know if a design is quality or not. Well, I think that there’s quite a few ways to spot quality within web designs. Once you can see just what goes into making a quality web design, you can use the techniques to perfect your own style.

I’ve put together a few pointers, and collected some examples to explain just how I look for quality within a website design.

01. Spacing

One of the main things that I look for within a good website design is clever use of spacing with design elements. Paying close attention to how certain things are spaced out and lined up can really make a difference to the overall appearance and sense of quality of your design.

I think the key to getting your spacing right is to look at all of the elements within your design. Looking at the bigger picture really can help you get a good idea of how best to space your elements. Sometimes zooming out and taking a different look at your designs can be a great help.

Examples of Excellent Spacing

Great Spacing on the Good.is Website

As you can see here, there is a very clean and open feel to the content here. This is completely down to the designer allowing a good amount of space around the text & images.

s

A very well spaced out Digital Mash Website

Having well spaced out elements can make them a lot more attractive, and a lot more clickable. Digital Mash is a great example of a very welcoming website.

Creatica Daily has heaps of space

Again the great use of spacing here really helps let the content speak for itself. There isn’t a lot of content in each post, but they’ve not been afraid to give the content a lot of space. Just because you only have a few lines of text, doesn’t mean it can’t use a lot of space.

Lots of Space on the Postbox Site

Taking a close look at the Postbox website, you can really see how space there is around the edges. There’s actually a 60px padding here. It sounds like quite a lot, but when you see it in action it looks great.

Getting Spacing Wrong

The main mistake people make when it comes to spacing is having their content too close to the edges. No matter how well you’ve styled your content, if you cram too much in, it loses a lot of it’s style and quality.

Example of not using enough spacing

We showed in the previous section how good the spacing was on the PostBox website, but we’ve made the  mock-up below to show how it would look with less spacing. And you can see just how much bad spacing can effect your design. It takes a lot away from the design and certainly removes the quality feel from it.

Tips on Effective Spacing

Deciding on how much spacing to use is something which will vary from time to time, you really need to train your eye to allow for the correct amount of spacing for each element, and use it effectively to fit the design. It’s touch but something you can pick up with practice.

Design using a grid system
Using a grid certainly helps you to understand the importance of spacing

Try & Try again
You can always use a method of trial and error until you find what looks right.

White Space isn’t a wasted space
Just because you have an empty area, it doesn’t mean you have to fill it.

Less really is More
Rather than trying to fit more in an area, fit less, give it space and keep just the vital important information.

02. Pixel Perfect Detail

You can really tell when someone has put real effort into the finish of a web design. Sometimes it’s the subtle things that really make a difference, and a lot of people might not even notice. What I mean when I talk about Pixel Perfect Detail is the method of paying close attention to lines, edges and borders. Rather than just have a simple line, sometimes adding some small details, whether it be subtle gradients, or something as a simple 1px shadow or highlight can really make your work stand out. Some designers of note that are really good at this are: Collis Ta’eedDavid Leggett and Wolfgang Bartelme.

Examples of Pixel Perfect Details

A close look at the detail on Envato

If you look in the examples I’ve cut out, you can see in Example 1, how the green bar has a 1 pixel lighter green line on the border. Example 2 uses a soft gradient shadow on the inside of the box and leaves a 1px clear white border at the top. Clever, using a shadow to give the impression of a highlight above it. The green area behind has a very soft subtle shadow which helps draw attention to the clean and crisp detail within the white box below. Although it doesn’t seem like much these thing really do help to make everything look that little bit more polished, they give a sense of 3D and realism, almost like the elements are placed onto the page, rather than just a flat and static layout.

The Details on Tutorial9.net

David Leggett has a great understanding of how to really make pixel’s pop. His recent redesign of tutorial9 is a great mix of so many pixel popping techniques. In Example 1 you can see how he’s made the tabs look that little bit slicker by adding a simple 1px highlight to the top. Example 2 see’s a variety of techniques. A Drop shadow on the camera icon, a shadow highlight on the white area, and a 1px highlight on the top of the navigation bar.

Pixel Perfect Buttons & Separators on RedBrick Health

This beautiful navigation, created by Ryan Scherf is another great example of using pixel perfect details to get that feel of quality in your design. The pink button has a 1px highlight, and the separating lines between the links have the same level of quality and detail, as you can see rather than just having a gray line separation, Ryan has included a 1 pixel highlight below it to prevent it looking flat and 2 dimensional.

Pixel Perfection Applies to Grunge too: AvalonStar

Here we have the beautiful AvalonStar: Distortion blog, which uses a great grunge style. But even with a dirty & grungy design using a 1px highlight can still make a big difference. If you look at Example 1 you can see how a shadow gradient has been used on the brown top area, the green box which lies below it has a 1px highlight at the top. The combination of the shadow above and the 1 pixel highlight really make the boxes look that little bit more polished.

Quick tips for Perfect Details

Practice makes perfect in this case, as you can see from the examples something as simple as a 1px highlight line can add some really cool depth to your designs, you don’t need to rely on really over the top bevels and gradients to give the impression of something with a bit of depth.

Keep it Subtle
Small details that compliment the content are the key.

Think in Pixels
Borders, gradients, lines and shadows etc don’t have to be huge to be effective.

Before & After
Compare your results to how they looked before you applied the effects. Then you can see just how effective they are.

03. Well thought out Typography

Although the actual content of the website won’t be written by the designer, they play just as important role in the overall quality of the content. Their role is to make sure that the content is displayed in a way that is easy to follow and read through. There are many ways that you can ensure your type is readable and usable, and while I’m not going to list a set of rules and regulations on what, and what not to do, I will give you some examples of where clever typography really does make a difference.

Examples of Well Thought out Typography

Big & Beautiful on The Netsetter

Titles are important within web design, especially when you are designing for a blog. A recent trend in web design is to use big & bold fonts for titles. This works in a number of positive ways, not only does it tick all the right boxes from a usability point of view, but it helps to create space and define structure within a design. This example from Netsetter is a great illustration of these points, you can see how the title creates a lot of white space around it, and naturally it’s very easy to read.

Leading & Spacing with your Text

The Viget website really is a beautiful example of how important typography is within web design. The example we see below (taken from their portfolio showcase) shows once again how using a larger sized font helps to create and open space. Even with the thin, crisp font they have used you can see just how much space has been created in that area. The actual typeface itself is very slick, and is a great choice of font. The other thing that stands out here is their attention to detail with the line height (Leading), the spacing between each line of text has been increased from the default value to create a lot more space and make the text much more readable. A trick which you could try in your next design.

Web Design Ledger, Fonts to Fit your Mood

Finding the perfect font can be done through trial and error, or you can make your choices based upon the different moods certain fonts help bring to a design. The example here, Web Design Ledger, has a retro and worn look to it, while still having a very open and modern feel to it, so choosing fonts that help evoke a similar moods to these is essential to it’s success. Henry Jones (the designer) has chosen a popular transitional serif typeface: Georgia for the titles which compliment the retro & worn aspects of the design very well. The modern feel to the website comes from using a very different font to the titles, the main content body is written in Helvetica, a sans-serif typeface with a very rounded, open feel to it. The two choices of typeface in this example are very clever and really help to compliment and set the mood of the design.

Quick check list for Typography in Web Design

Spotting good typography within web design becomes a little easier when you’ve seen some great examples of typography (above) But when exactly is it that makes these examples so good, and what should you be looking out for when you come to design your next website?

Is it Readable?
Don’t be scared of making your titles big and bold.

Have you thought about spacing?
Spacing can vastly improve readability.

Do your fonts fit the mood?
Make sure your fonts compliment the design.

There are probably a thousand more tips out there, but I don’t consider myself an expert in this area, I think I’ve just learnt to appreciate the impact of good typography. If you want to learn more about the things to look out for and see some better examples i strongly suggest you check out this post from Smashing Magazine.

04. Organization of Elements

Being a designer appeals to many because of it’s creative nature, and sure it can be a lot of fun. Now I know that Organizing doesn’t sound at all creative or fun, but once you get into a habit of good organization it doesn’t have to be as dull as it sounds. The way you organize the elements in a website is always going to be different, it depends on what type of site it is, and how important certain features are to the content of that website.

Although there’s always a variation in how and where you place things, there are some things you can do to make organizing your content very easy. The first thing you need to do is decide what you want your design to achieve. For example, are you designing to sell a product, are you designing for content, or are you designing for signups & referrals etc.

Designing to Sell: 37Signals

Taking a look at the massively popular 37 signals website it’s easy to see that it’s no coincidence they are selling their products so well. They’ve made it as easy as possible for you to see what’s for sale and help you to make the final decision to buy. Everything you want from a site designed to sell.

In the Example image you can see that the site has 4 key features that make it ideal to encourage you to buy. Attention is the first thing, they’ve made a very dark box with a quick summary & big bold titles. Next they generate your Interest by listing some benefits of each product with a lovely illustration. Desire is the next point, and this is archived by placing quotes & testimonials, and as in this point some videos of “What our Customers have to say.” The final feature to keep in mind is Action; on 37Signals there are various action points throughout the page, also nice to see that as the page is quite long they even have some action points in the footer.


Designing for Content (Blog): Well Medicated

When you’re designing for a blog it’s a completely different story. You don’t need to spend time convincing and re-assuring your users about your product, your “product” is already on display, your content is your product. Make it easy for your users to see your posts, explore them and connect with you & your blog.

Content should be (one of) the first thing(s) you see on a blog. In this example a nice bold pink title font really draws your eyes straight to the content. There’s a good sized preview image and a good 2/3 paragraphs of text followed by a “Continue Reading” link. There’s also the standard date & author information. For me this is one of the most perfect examples of what I would class as quality “Content Design.” Attention can be directed to anything of interest, here the nice big subscribe icons are the focus and help the users to stay connected with your content. Plus it without doubt will increase the amount of subscribers, so it works on two levels. Encouraging your users to Explore is quite simple, you can use anything from tabbed recent or popular content in the sidebar, to drop down menu’s or simple & effective lists. It’s easy to do, but very effective, especially on a blog. Blogs tend to be very personal things, so allowing your visitors to Connect with you in a variety of ways can be a big plus, and can help encourage people to get to know you, and visit

Tips to Help with Organizing your content.

Of course there’s always times where you’ll need to do things differently and break the norm. But there are some simple tips you can follow to keeping a well structured and well ordered design.

What are you designing for?
As we’ve shown above, decide the goal of your design

Design using a Grid
Grids allow you to make the most of your space.

Test the Placement of Elements
Be the visitor, would you be able to use it.

Remove any unnecessary Elements
Anything that isn’t essential should be removed, or out of the way

Balance of Attention
Some things need to stay simple to allow others to shine

05. Restraint & Subtlety

Designers are always looking for ways to make an impact with a unique design or special effect within a design. But sometimes you can make a bigger impact by restraining yourself. There comes a point where something crosses from being good to being too much. A good designer can spot when the line has been crossed, and avoid putting too much into a design or special effect.

Examples of Subtle Effects within Web Design

Soft Gradients on “Things” Website

I’m always on the look out for subtle effects on all the websites I visit. Sort of sad maybe, but I can’t help but pick out all the little details for future inspiration. Gradients are often over used and really in your face, but used correctly gradients can add a element of reality and depth to a design. Most people might not even spot the gradients, and those for me are the best ones.

Drop Shadows on Icon Dock

Icon Dock is a smorgasbord of subtlety. Pixel highlights, gradients and drop shadows. But for the sake of this example we will focus on the drop shadow, it’s not very big, and it’s opacity has been reduced to just put the highlight on the content box and bring it forward very slightly. It’s a beautiful example.

Quality in Web Design - Subtlety, Soft Gradients: Icon Dock

Subtle Background Textures; Scouting for Girls

Having a textured background can make or break your design. A lot of times the background becomes too much of a distraction that it actually takes away from the quality of the design. So it’s often a good idea to keep your background textures subtle and soft. The Scouting for Girls website does a great job of using a texture to compliment the overall style & quality of the design.

A hint of Wear & Tear: Viget Advance

I don’t think you can ever be too subtle, any amount of detail no matter how subtle will be noticeable, and whether people are aware of it or not it does have an impact. This example from the Viget Advance blog shows some hints of wear & tear, just a very small amount of wear, but without it the paper would look flat and dull. It’s the small imperfections that make it more believable and real.

Watercolours on WebDesignerWall

When using watercolours it’s always nice to make sure you mix the colours and keep the colours very soft, faded, and well… Watery. Using watercolours can benefit your design in many ways, it allows you to inject some subtle colours and bring in some texture, which is why it’s become quite a popular choice for many designers to include.

Subtle Floral Elements; Dara’s Garden

This is a brilliant example of subtle floral detail within a design. There are some more vivid floral illustrations that are also quite stunning, but in this example we are focusing on the lighter & softer details in the background. This really shows the importance of subtlety, the soft colour and worn look to the pattern means that your eye is aware of the detail, but it isn’t the main focus.

Tips for Subtlety in your Design

For me, subtle details in a design can really push a design from being good, to being amazing. If you’re looking for a way to inject something special into your design, subtle details really are the way to go. Here are some tips to keep in mind when including subtle details in your design.

Build up your layers
Never just use one brush or texture, build your details up.

Experiment with opacity & Colour
Sometimes even 3% opacity can have a positive impact.

Don’t worry, Be Brave
Done be afraid to be too subtle, or too faded.

06. Using Colour to it’s Full Potential

People often judge colours on their personal taste, which is a huge mistake. If you’re ever in a situation where you need to decide upon what colours look good in a design your mind should always be on the brand, and building a theme and mood using a colour scheme.

Brilliant uses of Colour In Web Design

Real Estate can be Real Colourful: Oypro

The thing I like about the Oypro website is that it proves that a “boring” subject doesn’t have to have a boring design. All too often corporate sites have a reluctance to allow designers to really put across some creative flair in their designs. There seems to be a need to keep things simple, flat, and gray. But this design proves that you can still have a corporate looking website, without the need to hold back.

Keeping your Colours Relevant: Tennessee Summertime

Summertime in Tennessee is a vibrant, bright and very warm website. Everything you’d want to associate with a site that is promoting summer activities. There are a lot of different colours in play here, but all of them are relevant. Good quality designs have a colour scheme that is relevant to the service or product that they are designing for. Sometimes it’s the obvious colour choices that make for the better design, a good example of my point is Hell Design - it wouldn’t make sense being any colour than a firey red.

Variety in your Backgrounds: Saturized Studio

It’s not enough just to have colour in your background and expect that to make it interesting. Some of the best backgrounds are those that have a bit of variety, in this example we see that the beautiful orange/red colour is subject to all sorts of lighting effects and gradients. It gives an extra something to the background, and prevents it from looking stale and flat. Important to note here too that the contrast between the dark & deep orange works really nice set behind the much lighter content area.

Tips for using colour in design

Colour is always a good area for exploration and trying different possibilities and variations, but it’s always important to keep a few things in mind when choosing colours and a colour scheme.

Experiment
A boring topic doesn’t have to have a boring colour scheme.

Variety
Try using gradients, patterns, brushes on your colourful backgrounds. Colour alone doesn’t make something look good.

Stick to a Theme
Make sure your colours are relevant to your product/service.

07. Doing something Nobody else has done

Some of the best websites around are those that are out of the ordinary, strange and somewhat bizzare. But those that challenge the norm may end up changing what the norm is. But being truly original and creating something nobody else has done before is the toughest thing to do in design.

You could end up making something of amazing brilliance, or you could end up with a design that’s worthy of nothing but criticism. It’s a very thin line between success and failure; I mean there are reasons something’s never been done before, and it’s usually because it’s a shit idea. You’ve got to be brave to step away from what people know and love, and here are a few examples of that point:

Unique Navigation on MB Dragan

Not exactly your average site navigation, but would the website look as good if it just had a standard navigation. I’d say it was a bit of a risk having the navigation in such an unusual way, but it does fit in with the site, it is relevant, and it’s done to such a standard that it’s hard not to appreciate how well it works with the overall design.

Visualbox & their very Visual Navigation

Visualbox have one goal in mind, showing you their brilliant work. So they’ve got very little text, on first look all you see is their Name and a selection of their work. The preview box changes when you hover over it to reveal details of that project, so it’s actually a very effective and functional solution, and much more appealing then just having a list of links.

Straight to the point with Nikola Mircic

So you’re a interface designer, you want people to see your work, and hire you. Nikola Mircic shows us how getting straight to it makes for a really impressive site. You are greeted with a wide variety of his work, his name & what he does at the top, and a contact link. There’s no mass of text or fancy words to convince you to use his services, he literally lets his work talk for itself. Of course you can click on the images to see more & get some text, but the layout if very unique and I love how it works.

Tips for trying something new

The examples above are not meant to be “inspiration” for unique ideas, just simply a couple of sites that I found that I’d deem to be quite unique. The fact is you can’t really search around for inspiration on new ideas, as it kind of spoils the point of it. So really you can just ignore this whole section if you are trying to think up something new!

Keep it Relevant
If you’re going to do something very new and unique, ask yourself “does it make sense” and “does it fit with the branding?” if so then go do it!

Ignore everything you know!
Okay maybe not everything, basic principles may stay the same, but there’s no point looking for inspiration on new ideas, you’ll just be heading in the wrong direction.

Keep a level of quality
I think generally if your new idea looks good, and works well it’s much easier for you to justify.

What Do you look for in a Quality Design?

There are so many things that can make a design stand out as quality, I’d say I’ve just covered a few of the base points. So I’d love to see your ideas and thoughts about what you look for when you decide whether a design is good or not.

by Anna 안나 2009. 8. 9. 13:21