Text field trong ví dụ này sẽ scroll bất kỳ đoạn text nào bạn muốn.
Trước tiên bạn chỉ cần cắt dán đoạn script sau vào bất kỳ phần nào trong . Bạn có thể sửa 25 để thay đổi cỡ của băng , sửa 100 để tăng hay giảm tốc độ
<CENTER>
<FORM NAME="marquee1">
<INPUT NAME="text" SIZE=25
VALUE=" Welcome to Internet Today 's ultimate JavaScript tutorial! Have fun!"
>
</FORM>
</CENTER>
<SCRIPT>
<!--
ScrollSpeed = 100
ScrollChars = 1
function ScrollMarquee() {
window.setTimeout('ScrollMarquee()',ScrollSpeed);
var msg = document.marquee1.text.value;
document.marquee1.text.value =
msg.substring(ScrollChars) +
msg.substring(0,ScrollChars);
}
ScrollMarquee()
//-->
</SCRIPT>
Chúc các bạn thành công!
Nguồn: Tạo Scroller trong Text field sử dụng Java Script
_________
Có thể bạn quan tâm :
- Các khóa học aptech
- Tự học lập trình .net
- Tự học lập trình php
- Tự học lập trình web
Trước tiên bạn chỉ cần cắt dán đoạn script sau vào bất kỳ phần nào trong . Bạn có thể sửa 25 để thay đổi cỡ của băng , sửa 100 để tăng hay giảm tốc độ
<CENTER>
<FORM NAME="marquee1">
<INPUT NAME="text" SIZE=25
VALUE=" Welcome to Internet Today 's ultimate JavaScript tutorial! Have fun!"
>
</FORM>
</CENTER>
<SCRIPT>
<!--
ScrollSpeed = 100
ScrollChars = 1
function ScrollMarquee() {
window.setTimeout('ScrollMarquee()',ScrollSpeed);
var msg = document.marquee1.text.value;
document.marquee1.text.value =
msg.substring(ScrollChars) +
msg.substring(0,ScrollChars);
}
ScrollMarquee()
//-->
</SCRIPT>
Chúc các bạn thành công!
Nguồn: Tạo Scroller trong Text field sử dụng Java Script
_________
Có thể bạn quan tâm :
- Các khóa học aptech
- Tự học lập trình .net
- Tự học lập trình php
- Tự học lập trình web