Stuff 2

Coloured scroll bars.

I was told how to do this by CoffeeAddict, so here goes.

I use FrontPage to make my site, but if you can add your own HTML, 
then your a smarty pants lol.....Anyway add the HTML to your page  
between the HEAD tags, then save. There ya go coloured scroll bars , you will 
need to play about with the colours and the shadows. 
I have added an HTML colour chart as well to make 
it a little easier for you.

This is what my scroll bar HTML looks like , you can copy and paste the text into your own web page.

<STYLE type=text/css>BODY 
(SCROLLBAR-ARROW-COLOR: #92602d; SCROLLBAR-TRACK-COLOR: #fffbf0; SCROLLBAR-BASE-COLOR: #fffbf0; scrollbar-dark-shadow-color: #FFFBF0}
</STYLE>
Html Colour Chart

 Text on the status bar.

This is where you see a welcome message at the bottom of the page in the status bar.
Add the HTML between the HEAD tags of the html page.

Non Scrolling.
<SCRIPT LANGUAGE="VBScript">
<!--defaultStatus = "Welcome to Giggly's tutorial page ........"-->
</SCRIPT>
Scrolling.

<Script LANGUAGE="JavaScript">
var Count = 0;
var Text = "Welcome to Giggly's tutorial pages.........";
var Speed = 90;
var timerID = null;
var TimerRunning = false;
var i = 0;
while (i ++ < 140)
Text = " " + Text;

function Scroll(){
window.status = Text.substring(Count++, Text.length);
if (Count == Text.length)
Count = 0;
timerID = setTimeout("Scroll()", Speed);
TimerRunning = true;
}

function Start(){
Stop();
Scroll();
}

function Stop(){
if(TimerRunning)
clearTimeout(timerID);
TimerRunning = false;
}

Start();
// end hide -->
</Script>

 

Scrolling marquee text in a page.
This HTML goes between the BODY tags, you need to know where you want the text to be seen........cool huh?
<MARQUEE><FONT face="Your font here." size=4>Your text goes here...</FONT></MARQUEE>
Fixed Background.
Fixed background, only text and images scroll. The HTML goes inside the BODY tag after the section that defines the background image.

EXAMPLE: <BODY background="your image" bgproperties="fixed">

 bgproperties="fixed"
Open Links in a new window
This will open a link in a new page. Add this after the link URL in the HTML page, inside the link tag itself.
target=body
This would open my site in a new window.
EXAMPLE : <A href="http://www.giggly.pwp.blueyonder.co.uk" target=body>
Page Transitions.
Place this <META> tag in between the <HEAD> tags of
all your Webpages. Then view the Webpages in IE 4
and you will notice the page transitions. Randomly
the pages will be displayed in different transitions
such as swipe left, swipe right, expand out, etc.

ONLY WORKS IN Internet Explorer.

<meta http-equiv="Page-Enter" content="revealTrans(Duration=1.0,Transition=23)">

<meta http-equiv="Page-Exit" content="revealTrans(Duration=1.0,Transition=23)">

If you need any help with these, send me an email and I will explain in more detail.
 


Home


Stuff