본문 바로가기

스크립트/윈도우창관련

브라우져 상단에 따라 다니는 삼각 배너 넣기


독도 살리기등 블러그등에서 많이 볼수 있죠..

오른쪽
<a href="이미지링크" title="제목" target="_blank" id="znSticker">제목</a>
<style type="text/css">
 #znSticker {
  position: absolute; right: 0; top: 0;
  background: url('이미지경로') no-repeat; width: 132px; height: 132px; text-indent: -100em; display: block; overflow: hidden;
 }
</style>


왼쪽형
<a href="이미지링크" title="제목" target="_blank" id="znSticker">제목</a>
<style type="text/css">
 #znSticker {
  position: absolute; left: 0; top: 0;
  background: url('이미지경로') no-repeat; width: 132px; height: 132px; text-indent: -100em; display: block; overflow: hidden;
 }
</style>