Seong-Jung's Blog

반응형

공식 사이트 링크 : http://tympanus.net/codrops/2013/10/23/animations-for-thumbnail-grids/

갤러리를 css3 애니메이션 효과를 사용하여 생동적으로 표현


[설치 방법]

1. 소스를 다운받아, 자신의 웹디렉토리에 복사

예) Context/plugins/


[사용 방법]

 - 플러그인 소스를 import



















[테스트 소스]

 - html 소스



  • img01
  • img02
  • img03
  • img04
  • img05
  • img06


반응형

반응형

공식 사이트 링크 : http://tympanus.net/codrops/2012/09/03/bookblock-a-content-flip-plugin/

책 넘기는 효과를 부드럽게 표시해주는 Animation jQuery 플러그인


[설치 방법]

1. 소스를 다운받아, 자신의 웹디렉토리에 복사

예) Context/plugins/


[사용 방법]

 - 플러그인 소스를 import




















 - document.ready 시에 BookBlock을 불러들이는 소스를 로드

$('#bb-bookblock').bookblock();


[테스트 소스]

- html소스

{첨부파일로 대체}

 - javascript 소스

$(function() {
    Test.init();
    $('#bb-bookblock a').click(function() {
        Test.nextFlip();
    });
});

var Test = {
    /**
     * initialize
     */
    init : function() {
        $bookBlock = $('#bb-bookblock');

        $bookBlock.bookblock({
            // vertical or horizontal flip
            // 수평 또는 수직 flip
            orientation : 'vertical',
             
            // ltr (left to right) or rtl (right to left)
            // 기본방향 좌우 또는 우좌 설정
            direction : 'ltr',
             
            // speed for the flip transition in ms.
            // flip 전환 속도 설정
            speed       : 1000,
             
            // easing for the flip transition.
            // flip 시, easing 옵션(CSS3 옵션) (ease-in, ease-out, ease-in-out)
            easing      : 'ease-in-out',
             
            // if set to true, both the flipping page and the sides will have an overlay to simulate shadows
            // 플립시 가상 그림자 설정
            shadows     : true,
             
            // opacity value for the "shadow" on both sides (when the flipping page is over it).
            // value : 0.1 - 1
            // 사이드 shadow 옵션
            shadowSides : 0.2,
             
            // opacity value for the "shadow" on the flipping page (while it is flipping).
            // value : 0.1 - 1
            // shadow 플립 옵션
            shadowFlip  : 0.1,
             
            // if we should show the first item after reaching the end.
            // 마지막 페이지일 경우, 첫 페이지로 이동여부 설정
            circular    : true,
             
            // if we want to specify a selector that triggers the next() function. example: '#bb-nav-next'.
            // jQuery의 next() 함수에 대한 selector 설정
            nextEl      : '',
             
            // if we want to specify a selector that triggers the prev() function.
            // jQuery의 prev() 함수에 대한 selector 설정
            prevEl      : '',
             
            // If true it overwrites the circular option to true!
            // 자동 롤링 설정
            autoplay        : false,
                     
            // time (ms) between page switch, if autoplay is true. 
            // autoplay가 true일 경우 페이지 전환 속도
            interval        : 3000,
             
            // callback after the flip transition.
            // page is the current item's index.
            // isLimit is true if the current page is the last one (or the first one).
            // flip 이후 callback 함수
            onEndFlip   : function( page, isLimit ) { return false; },
             
            // callback before the flip transition.
            // page is the current item's index.
            // flip 이전 callback 함수
            onBeforeFlip: function( page ) { return false; }
        });
    },
    /**
     * 다음 플립으로 이동
     */
    nextFlip : function() {
        $bookBlock.bookblock('next');
    }
};


반응형

반응형

공식 사이트 링크 : http://jscrollpane.kelvinluck.com/

스크롤의 표시나 색상을 설정할 때 유용한 jQuery 플러그인 (크로스브라우징 지원)

 

[설치 방법]

 1. 소스를 다운받아, 자신의 웹디렉토리에 복사

  예) Context/plugins/

 

[사용 방법]

 - 플러그인에 사용되는 css, javascript 파일을 import

 

 - document.ready 시에 jScrollPane을 불러들이는 소스를 로드

$(function() {     $('.scroll-pane').jScrollPane(); }); 

[테스트 소스]

 - html 소스

{첨부파일로 대체}

 - javascript 소스

$(function() {     $('#contents').jScrollPane(); }); 

 - css 소스

/* 스크롤바 색상 변경 */ .jspTrack { background-color:#f4f4f4; } /* 스크롤 배경 색상 */ .jspDrag  { background-color:#e6d1d0; } /* 스크롤 색상      */ 

 

반응형

반응형
select  *
from t_member as of timestame(systimestamp-interval '100' minute) -- 분단위 시간 조정
where memberid = :p_memberid;


반응형

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

확인

IE11 UserAgent 변경

JAVASCRIPT2013. 12. 2. 13:23
반응형

인터넷 익스플로러(이하 IE)의 UserAgent 값이 "MSIE" 에서 "Trident"로 변경됨에 따라 브라우저의 UserAgent를 체크하던 사항에 대해 아래와 같이 수정하시면 됩니다. 아래의 예제는 Javascript 예제 입니다.


- 이전 (IE 10 이하)

if(navigator.userAgent.indexOf("MSIE") != -1)


- 변경 (IE 10 이상)

if(navigator.userAgent.indexOf("MSIE") != -1 || navigator.userAgent.indexOf("Trident") != -1)

반응형

'JAVASCRIPT' 카테고리의 다른 글

[jQuery] jQuery로 모바일(mobile) 버전 구분하기  (0) 2014.03.18
추천 Chart 라이브러리  (0) 2013.12.16

반응형

1. /etc/environment 파일 수정

 LANG="ko_KR.UTF-8"

 LANG="ko_KR.EUC-KR"

 LANGUAGE="ko_KR:ko:en_GB:en"

2. /etc/default/locale 파일 수정

 LANGUAGE="ko_KR.UTF-8"

 LANG_ALL="ko_KR.UTF-8"


3. .bashrc 파일 수정

 LANG="ko_KR.UTF-8"

 LC_ALL="$LANG"

 LANGUAGE="ko_KR:en_GB:en"

아... 진짜 이거 땜에 완전 고생했네요...

참고 블로그 및 포스트 : http://blog.daum.net/linuxvoyager/17http://www.ubuntu.or.kr/viewtopic.php?p=103956

                   

반응형

반응형

1. 오류 케이스 1

 apache2: Could not reliably determine the server's fully qualified domain name, using  www.naver.com for ServerName

  아래와 같이 조치

 sudo nano /etc/apache2/conf.d/fqdn 실행

 ServerName www.naver.com 추가

 Ctrl + X 를 누르면 저장 완료.

 sudo /etc/init.d/apache2 restart

 아파치 재시작


2.  오류 케이스 2

 [warn] NameVirtualHost *:80 has no VirtualHosts

  아래와 같이 조치

 sudo vi /etc/apache2/ports.conf

 #NameVirtualHost *:80

 #Listen 80

 Listen 서버 IP:80

 위와 같이 수정 후 저장


반응형

반응형

MS Office 2013을 구입해서 사용하고 있었는데... 포맷 후 앗, 내 제품키를 잊어버렸어요  ㅠㅠ 할땐... 어떻게 해야할까요?

MS Office가 2013버전으로 업데이트 되면서 프로그램을 Microsoft 계정에 연결해서 사용하도록 해놓았는데요... 이 때 생성해놓았던 계정을 이용해서 제품키를 확인하는 방법을 알려드리겠습니다.


1. http://office.microsoft.com 접속 > 로그인 클릭


2. Microfost 계정 선택


3. 계정정보 입력 후 로그인 클릭


4. 내 계정 클릭


5. 디스크있음 클릭하게 되면 제품키를 확인하실 수 있습니다.

도움이 좀 되셨나요? 디스크 있음 아래에 있는 디스크 구매 메뉴를 통해 디스크를 구매하여 소장하여도 되고, 디스크 굽기를 통해 DVD나 USB에 저장하여 활용해도 됩니다.

반응형

'OS/문서' 카테고리의 다른 글

MS Office 2010 버전 프로모션 인증하여 MS Office 2013 받기  (0) 2013.03.21
MS Office 2010 설치  (0) 2013.03.21

반응형

MS Office 2013이 처음 나오면서 대대적인 마케팅 차원으로 MS Office 2010을 구매할 경우, MS Office 2013을 온라인으로 다운받아 사용할 수 있는 프로모션을 진행하고 있는데요, Microsoft에서 이런 차원의 프로모션은 잘 나오지 않아 정품 구매를 하기에 딱 적시입니다 ^^ 1+1 효과!!!

MS Office 2010 버전을 이용해 MS Office 2013 버전을 다운로드 할 수 있는 방법을 알려드리겠습니다. 


1. http://office.com/offer 접속 > 지금 프로모션 적용 클릭


2. 국가/지역명, 제품키, 동의 여부 체크, 문자입력 > 제출 클릭



3. 우측 선택 클릭


4. Microsoft 계정에 로그인, 계정이 없다면 등록해야 함


5. 국가와 언어 선택 > 계속 클릭


6. 설치 클릭


7. 실행 클릭


8. 국가와 언어 선택 > 계속 클릭


9. 스트리밍으로 MS Office 2013 다운 후 자동 설치됨. 설치 완료.


반응형

'OS/문서' 카테고리의 다른 글

MS Office 2013 제품키 확인  (2) 2013.03.21
MS Office 2010 설치  (0) 2013.03.21