[자바스크립트] 하단 위치 고정 배너
<script type="text/javascript"> if(typeof document.compatMode!='undefined'&&document.compatMode!='BackCompat'){ var cot_tl_bodyCSS='* html {background:url(빈 이미지 blank.gif) fixed;background-repeat: repeat;background-position: right bottom;}'; document.write('<style type="text/css">'+cot_tl_bodyCSS+cot_tl_fixedCSS+'</style>'); <div id="cot_tl_fixed"> |
CSS로 만들기
#quickLink { position:fixed; } |
#quickLink { position:fixed; } |
[자바스크립트] 이동하는 글자, 흐르는 글자 만들기
<marquee direction="left" height="200"scrollamount="2"> 좌로 글이 움지긴다.</marquee>
<marquee direction="right" height="200" scrollamount="3"> 우로 글이움지긴다.</marquee>
<marquee direction="down" height="200"scro11amount="4"> 아래로글이움지긴다.</marquee>
<msrquee behavior="alternate" height="400" scrollamount="3">왕복으로움지긴다.</marquee>
<marquee direction="up" height="200" scrollamount="1"> 위로 글이올라간다.</marquee>