By: Guru Singh in Javascript Tutorials on 2008年09月05日 [フレーム]
If you are looking for a simple java script to show a scrolling message on the status bar then you can use this script.
TWO STEPS TO INSTALL WRITE AND SLIDE:
1. Paste the coding into the HEAD of your HTML document
2. Copy the onLoad event handler into the BODY tag
STEP ONE: Copy this code into the HEAD of your HTML document
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function evalProtocol() {
curProtocol = window.location.protocol
if (curProtocol == "http:") {
alert("The document comes from the Web.")
}
else {
if (curProtocol == "file:") {
alert("This document comes from your hard drive.")
}
else {
alert("This document comes from somewhere else.")
}
} var Message = "Yet another simple scroll!";
var place = 1;
function scrollIn() {
window.status = Message.substring(0, place);
if (place >= Message.length) {
place = 1;
window.setTimeout("scrollOut()", 300);
} else {
place++;
window.setTimeout("scrollIn()", 50);
}
}
function scrollOut() {
window.status = Message.substring(place, Message.length);
if (place >= Message.length) {
place = 1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 50);
}
}
}
// End -->
</SCRIPT>
STEP TWO: Add this onLoad event handler into the BODY tag
<BODY onLoad="scrollIn()">
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="https://www.java-samples.com">The Java samples home</a></font>
</center><p>
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Most Viewed Articles (in Javascript )
Dynamically modify the option set in Dynamics 365 forms
promise and .then() in JavaScript
reduce() and filter() in JavaScript
History and evolution of Javascript
Using parseInt() and parseFloat() in JavaScript to convert data types to Numbers
Show how many characters remaining in a html text box using javascript
Latest Articles (in Javascript)
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate