|
|
|
16년 전
|
조회 1,508
|
|
|
|
16년 전
|
조회 1,388
|
|
|
|
16년 전
|
조회 1,124
|
|
|
|
16년 전
|
조회 1,541
|
|
|
|
16년 전
|
조회 1,511
|
|
|
|
16년 전
|
조회 1,057
|
|
|
|
16년 전
|
조회 1,522
|
|
|
|
16년 전
|
조회 977
|
|
|
|
16년 전
|
조회 895
|
|
|
|
16년 전
|
조회 1,059
|
|
|
|
16년 전
|
조회 1,521
|
|
|
|
16년 전
|
조회 1,371
|
|
|
|
16년 전
|
조회 806
|
|
|
|
16년 전
|
조회 1,001
|
|
|
|
16년 전
|
조회 1,283
|
|
|
|
16년 전
|
조회 950
|
|
|
|
16년 전
|
조회 3,460
|
|
|
|
16년 전
|
조회 947
|
|
|
|
16년 전
|
조회 954
|
|
|
|
16년 전
|
조회 802
|
댓글 2개
<span id="typing">
xxx오신걸 진심으로 환영합니다.
</span>
<script type="text/javascript">
interval = 100; //속도조절
if(document.getElementById) {
t = document.getElementById("typing");
if(t.innerHTML) {
typingBuffer = ""; // buffer prevents some browsers stripping spaces
it = 0;
mytext = t.innerHTML;
t.innerHTML = "";
typeit();
}
}
function typeit() {
mytext = mytext.replace(/<([^<])*>/, ""); // Strip HTML from text
if(it < mytext.length) {
typingBuffer += mytext.charAt(it);
t.innerHTML = typingBuffer;
it++;
setTimeout("typeit()", interval);
}
}
</script>
위 내용을 본문에 추가하세여