منتدى استراحات زايد

منتدى استراحات زايد (http://vb.ma7room.com/index.php)
-   منتدى أخبار المواقع والمنتديات العربية والأجنبية (http://vb.ma7room.com/forumdisplay.php?f=183)
-   -   [Template] : كود التسجيل المتحرك (http://vb.ma7room.com/showthread.php?t=103328)

محروم.كوم 05-09-2009 03:50 PM

[Template] : كود التسجيل المتحرك
 
بسم الله الرحمن الرحيم

السلام عليكم ورحمة الله وبركاتة

اخواني انا جاني اضافة كثيرة عشان كود التسجيل السريع

ومثال
www.7lti.com/vb

الكود حطو في اخر الهيدر او في الفروم هوم


الكود
رمز PHP:




#topbar{
position:absolute;
border: 1px solid black;
padding: 4px;
background-color: white;
width: 380px;
visibility: hidden;
z-index: 0;
}




var
persistclose=0 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 30 //set x offset of bar in pixels
var startY = 4 //set y offset of bar in pixels
var verticalpos="fromtop" //enter "fromtop" or "frombottom"

function iecompattest(){
return (
document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function
get_cookie(Name) {
var
search = Name + "="
var returnvalue = "";
if (
document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (
offset != -1) {
offset += search.length
end
= document.cookie.indexOf(";", offset);
if (
end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return
returnvalue;
}

function
closebar(){
if (
persistclose)
document.cookie="remainclosed=1"
document.getElementById("topbar").style.visibility="hidden"
}

function
staticbar(){
barheight=document.getElementById("topbar").offsetHeight
var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
var
d = document;
function
ml(id){
var
el=d.getElementById(id);
if (!
persistclose || persistclose && get_cookie("remainclosed")=="")
el.style.visibility="visible"
if(d.layers)el.style=el;
el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
el.x = startX;
if (
verticalpos=="fromtop")
el.y = startY;
else{
el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
el.y -= startY;
}
return
el;
}
window.stayTopLeft=function(){
if (
verticalpos=="fromtop"){
var
pY = ns ? pageYOffset : iecompattest().scrollTop;
ftlObj.y += (pY + startY - ftlObj.y)/8;
}
else{
var
pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
ftlObj.y += (pY - startY - ftlObj.y)/8;
}
ftlObj.sP(ftlObj.x, ftlObj.y);
setTimeout("stayTopLeft()", 10);
}
ftlObj = ml("topbar");
stayTopLeft();
}

if (
window.addEventListener)
window.addEventListener("load", staticbar, false)
else if (
window.attachEvent)
window.attachEvent("onload", staticbar)
else if (
document.getElementById)
window.onload=staticbar





التسجيل
في المنتدى


سجلاتنا تفيد بأنك غير مسجّل في المنتدى </span> ,, يرجى التسجيل



إسم العضو

كلمة السر

تأكيد كلمة السر

البريد الإلكتروني



تأكيد البريد الإلكتروني

هل انت موافق؟





قوانين المنتدى



</span>


</span>

تحياتي لكم

اخوكم : فهد العازمي


شركة الملكي للاستضافة والتطوير والدعم الفني

</div>


الساعة الآن 02:42 AM

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.2 TranZ By Almuhajir


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227