Chrome Extension - css/js 활용기초
- 링크 색 바꾸기 및 페이지 맨 위 / 맨 아래 이미지 버튼
manifest.json
{
"name" : "rainbow_rink",
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"css" : ["css/rainbow.css"], //링크에 레인보우 효과
"js": ["script/goto.js"] //페이지 이동 버튼
}],
"manifest_version": 2,
"version" : "1.0"
}
css/rainbow.css
@CHARSET "EUC-KR";
@-webkit-keyframes rainbow {
0% {color: #f00;}
17% {color: #f90;}
33% {color: #ff0;}
50% {color: #0f0;}
67% {color: #00f;}
83% {color: #60f;}
100% {color: #90f;}
}
a:hover {
-webkit-animation: rainbow infinite 1s;
}
script/goto.js
(function() {
//---------------
//top 이미지 생성
//---------------
var top = document.createElement('a'),
topImg = document.createElement('img');
topImg.src = chrome.extension.getURL('img/top.png');
//------------------------------
//이미지를 클릭하면 0,0으로 이동
//------------------------------
top.addEventListener('click', function() {
window.scrollTo(0, 0);
});
top.appendChild(topImg);
//------------------
//bottom 이미지 생성
//------------------
var bottom = document.createElement('a'),
bottomImg = document.createElement('img');
bottomImg.src = chrome.extension.getURL('img/bottom.png');
//------------------
//bottom 이미지 동작
//------------------
bottom.addEventListener('click', function() {
window.scrollTo(0, document.body.scrollHeight);
});
bottom.appendChild(bottomImg);
//---------------
//division 만들기
//---------------
var wrap = document.createElement('div');
wrap.style.position = 'fixed';
wrap.style.left = 0;
wrap.style.top = 0;
wrap.style.zIndex = 10000; //zindex는 z축의 겹침에 대한 순서를 결정
//--------
//끼워 넣기
//--------
wrap.appendChild(top);
wrap.appendChild(bottom);
document.body.appendChild(wrap);
})();
'Study > Javascript' 카테고리의 다른 글
[Javascript] javascript에서 replaceAll 하기!! (0) | 2014.05.20 |
---|---|
[angularJS] 컨트롤러로 view 뿌리기 tutorial (0) | 2014.05.20 |
[JQuery][ajax] 기본 post 요청 구조 (0) | 2014.05.20 |
[JQuery] html 문서에서 다른 html 문서 import (1) | 2014.05.20 |
[angularJS] null 체크 간편하게 하기 (0) | 2014.05.20 |
[Javascript] 스크립트에서의 키보드 키코드 (0) | 2014.05.20 |
[JQuery] prototype 과의 충돌 문제 해결법 (0) | 2014.05.20 |
chrome.extension API, Script API (0) | 2013.06.24 |
JSON.parse, JSON.stringify (0) | 2013.06.24 |
크롬 익스텐션 content_scripts 정의 (manifest.jason) (0) | 2013.06.18 |