
10-09-2017, 09:22 PM
|
Administrator
|
|
تاريخ التسجيل: Sep 2017
المشاركات: 350
|
|
نص مشع
كود:
1- انسخ هذا الكود و ضعه في منطقة HEAD
<style>
<!--
#glowtext{
filter:glow(color=#00FF00,strength=3);
width:100%;
}
-->
</style>
<script language="JavaScript1.2">
/*
Glowing Text Script-
Dynamic Drive (www.elahmad.com)
// Visit http://www.elahmad.com/ for more code
// http://www.elahmad.com/
*/
function glowit(which){
if (document.all.glowtext[which].filters[0].strength==3)
document.all.glowtext[which].filters[0].strength=2;
else
document.all.glowtext[which].filters[0].strength=3;
}
function glowit2(which){
if (document.all.glowtext.filters[0].strength==3)
document.all.glowtext.filters[0].strength=2;
else
document.all.glowtext.filters[0].strength=3;
}
function startglowing(){
if (document.all.glowtext&&glowtext.length){
for (i=0;i<glowtext.length;i++)
eval('setInterval("glowit('+i+')",150)');
}
else if (glowtext);
setInterval("glowit2(0)",150);
}
if (document.all)
window.onload=startglowing;
</script>
2- انسخ هذا الكود و ضعه في المكان الذي تريده في منطقة BODY
<font face="Tahoma" size="2">
<span id="glowtext">يمكنك تغيير الألوان و التحكم بنوع و حجم الخط</span></font>
|