Advertisement
2_2002-2004 Graphics #126501

BLEEDING TEXT

This text brightens up your page! you can just simply paste it where you wish it to appear. Its only for IE.

AI

Riepilogo AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Codice sorgente
original-source
<span id="theText" style="width:100%">
<h2>This is Pulsating Text!!</h2>
</span>
<script>
<!--
/*
Pulsating Text (Richard Smythe)
*/
//range of glowing
var from = 5;
var to = 11;
//speed of pulsing
var delay = 55;
//color of glow, name or RGB value (example:'#00FF00')
var glowColor = "lime";
//NO MORE EDITING!!!
var i = to;
var j = 0;
//can be called here or whenever you want the text to start pulsing
textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
}
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
//-->
</script>
<h1> Microsoft.NET Quickstart Guide </h1> <p>
<hr>
<p>
This articles contains a quick introduction to Microsoft.NET in general, and C# and VB.NET in particular. Even if you don't have the Visual Studio.NET IDE, .NET development is perfectly possible.
It contains..
(1) Excercises in C# and VB.NET
(2) Excercises in MSIL.
(3) Explanations about how they work!!
<p>
It explains everything you need to know about .NET technology (and nothing more).
So download the article and sample source code, and start now!!.
Commenti originali (3)
Recuperato da Wayback Machine