مشكلة في التشكيلات
3 مشترك
منتدى الدعم و المساعدة لأحلى المنتديات :: منتدى الدعم والمساعدة :: مشاكل في تنسيق مظهر أو تصميم أو صور أو الوان المنتدى :: أرشيف قسم "مشاكل في تنسيق مظهر المنتدى"
صفحة 1 من اصل 1
مشكلة في التشكيلات
ادحلوو منتداي
في التشكيلات العامة لوحة ابداعنا جاية ع اليمين
مع اني وضعت كود التوسيط
ولا فائدة م المشكلة
رد: مشكلة في التشكيلات
لم اضع سوا كود جعل الوان الاقسام كالقوس قزح بكل الالوان
في هذا الموضووع الكود
ولكن حذفتة ولا فائدة
رد: مشكلة في التشكيلات
اجعلى فاصل بين الجدول الى قبلها والى بعدها عن طريق زر enterممببددععةة كتب:لم اضع سوا كود جعل الوان الاقسام كالقوس قزح بكل الالوانفي هذا الموضووع الكودولكن حذفتة ولا فائدة
رد: مشكلة في التشكيلات
ما قصدتة أختي الكريمه هو الدخول الى منتداك ووضع أكواد التشكيلات العامه هنا. لكي أقوم برفعها عندي وأنظر ما اللازم في الأمر لجعله متوسط دون التأثير على البقيه...
رد: مشكلة في التشكيلات
حسناً تفضل
- الكود:
<script language="JavaScript1.2">
var rate = 20; // Increase amount(The degree of the transmutation)
////////////////////////////////////////////////////////////////////
// Main routine
if (document.getElementById)
window.onerror=new Function("return true")
var objActive; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID
if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}
//=============================================================================
// doRainbow
// This function begins to change a color.
//=============================================================================
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
//=============================================================================
// stopRainbow
// This function stops to change a color.
//=============================================================================
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
//=============================================================================
// doRainbowAnchor
// This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
//=============================================================================
// stopRainbowAnchor
// This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
//=============================================================================
// Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
// This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}
if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
//=============================================================================
// Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
// This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
//=============================================================================
// Change Color
// This function changes a color actually.
//=============================================================================
function ChangeColor()
{
objActive.style.color = makeColor();
}
//=============================================================================
// makeColor
// This function makes rainbow colors.
//=============================================================================
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?
// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}
elmR = Math.floor(elmR).toString(16);
elmG = Math.floor(elmG).toString(16);
elmB = Math.floor(elmB).toString(16);
if (elmR.length == 1) elmR = "0" + elmR;
if (elmG.length == 1) elmG = "0" + elmG;
if (elmB.length == 1) elmB = "0" + elmB;
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return '#' + elmR + elmG + elmB;
}
</script> <img src="http://i73.servimg.com/u/f73/17/96/71/06/7cfxn10.png" />
<div style="text-align: center;">
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(204, 0, 0);">آهلُآً ۆسهلُآً </span><span style="color: rgb(0, 204, 204);">با</span><span style="color: rgb(0, 204, 153);">آلُبدِعٍآت</span><span style="color: rgb(255, 0, 0);"> آلُجٍميَلُآت ..</span><span style="color: rgb(255, 102, 0);"> </span><span style="color: rgb(0, 204, 255);">ۆگلُ عٍآم ۆآنتم بخـيَرٍ</span><span style="color: rgb(255, 153, 255);"> </span></strong></span><img src="http://r12.imgfast.net/users/1212/21/03/03/smiles/3158090503.gif" />
</div>
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(0, 102, 255);">ۆهآ?ۆ آلُعٍيَدِ </span></strong></span><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);">يذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(0, 102, 255);">ۆذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(0, 102, 255);"> معٍة </span></strong><strong style="font-size: 16px;"><span style="color: rgb(255, 51, 153);">آلُبهجٍة ۆآلُفَرٍحٍ</span></strong>
</div>
<div style="text-align: center;">
<img src="http://r23.imgfast.net/users/2316/46/83/40/smiles/269394746.gif" /><span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 255);">ۆلُگن فَيَ</span><span style="color: rgb(255, 0, 255);"> لُمسآت مبدِعٍة</span><span style="color: rgb(0, 204, 153);"> آيَآمنآ گلُهآ </span><span style="color: rgb(0, 153, 255);">عٍيَدِ </span> </strong></span>
</div>
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(153, 0, 255);">ۆفَرٍحٍ</span><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(255, 0, 255);">ۆمرٍحٍ</span><span style="color: rgb(153, 0, 255);"> آنظًميَ آلُﮯ </span><span style="color: rgb(255, 0, 255);">عٍآلُمگ</span> </strong></span>
</div>
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 153);">معٍنآً </span><span style="color: rgb(255, 51, 153);">ۆآستمتعٍيَ</span></strong></span>
</div>
<div style="text-align: center;">
<span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>
</div>
<div style="text-align: center;">
<img src="http://www13.0zz0.com/2012/02/04/09/307496079.gif" /><span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>
</div>
<div style="text-align: center;">
<br />
</div>
<div style="text-align: center;">
<img src="http://i481.photobucket.com/albums/rr172/JJangella/line144.gif" /><br />
</div>
<div style="text-align: center;">
<img src="http://www7.0zz0.com/2015/07/27/22/274838753.gif" /><br />
</div>
<div style="text-align: center;">
<br />
<table border="1">
<tbody>
<tr>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
</tr>
<tr>
<td>
<br />
</td>
<td>
<br />
</td>
<td>
<br />
</td>
<td>
<br />
</td>
</tr>
</tbody>
</table><br />
</div>
<div style="text-align: center;">
<br />
</div>
<div>
<img src="http://i395.photobucket.com/albums/pp40/colonoscarpeay/11Random%20Pixels/1552913dehu8u46uf.gif" /><br />
</div>
</div>
رد: مشكلة في التشكيلات
والأن:
- الكود:
<script language="JavaScript1.2">
var rate = 20; // Increase amount(The degree of the transmutation)
////////////////////////////////////////////////////////////////////
// Main routine
if (document.getElementById)
window.onerror=new Function("return true")
var objActive; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID
if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}
//=============================================================================
// doRainbow
// This function begins to change a color.
//=============================================================================
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
//=============================================================================
// stopRainbow
// This function stops to change a color.
//=============================================================================
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
//=============================================================================
// doRainbowAnchor
// This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
//=============================================================================
// stopRainbowAnchor
// This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
//=============================================================================
// Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
// This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}
if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
//=============================================================================
// Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
// This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
//=============================================================================
// Change Color
// This function changes a color actually.
//=============================================================================
function ChangeColor()
{
objActive.style.color = makeColor();
}
//=============================================================================
// makeColor
// This function makes rainbow colors.
//=============================================================================
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?
// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}
elmR = Math.floor(elmR).toString(16);
elmG = Math.floor(elmG).toString(16);
elmB = Math.floor(elmB).toString(16);
if (elmR.length == 1) elmR = "0" + elmR;
if (elmG.length == 1) elmG = "0" + elmG;
if (elmB.length == 1) elmB = "0" + elmB;
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return '#' + elmR + elmG + elmB;
}
</script> <img src="http://i73.servimg.com/u/f73/17/96/71/06/7cfxn10.png" />
<div style="text-align: center;">
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(204, 0, 0);">آهلُآً ۆسهلُآً </span><span style="color: rgb(0, 204, 204);">با</span><span style="color: rgb(0, 204, 153);">آلُبدِعٍآت</span><span style="color: rgb(255, 0, 0);"> آلُجٍميَلُآت ..</span><span style="color: rgb(255, 102, 0);"> </span><span style="color: rgb(0, 204, 255);">ۆگلُ عٍآم ۆآنتم بخـيَرٍ</span><span style="color: rgb(255, 153, 255);"> </span></strong></span><img src="http://r12.imgfast.net/users/1212/21/03/03/smiles/3158090503.gif" />
</div>
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(0, 102, 255);">ۆهآ?ۆ آلُعٍيَدِ </span></strong></span><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);">يذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(0, 102, 255);">ۆذه?ب</span></strong><strong style="font-size: 16px;"><span style="color: rgb(0, 102, 255);"> معٍة </span></strong><strong style="font-size: 16px;"><span style="color: rgb(255, 51, 153);">آلُبهجٍة ۆآلُفَرٍحٍ</span></strong>
</div>
<div style="text-align: center;">
<img src="http://r23.imgfast.net/users/2316/46/83/40/smiles/269394746.gif" /><span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 255);">ۆلُگن فَيَ</span><span style="color: rgb(255, 0, 255);"> لُمسآت مبدِعٍة</span><span style="color: rgb(0, 204, 153);"> آيَآمنآ گلُهآ </span><span style="color: rgb(0, 153, 255);">عٍيَدِ </span> </strong></span>
</div>
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(153, 0, 255);">ۆفَرٍحٍ</span><span style="color: rgb(204, 204, 204);"> </span><span style="color: rgb(255, 0, 255);">ۆمرٍحٍ</span><span style="color: rgb(153, 0, 255);"> آنظًميَ آلُﮯ </span><span style="color: rgb(255, 0, 255);">عٍآلُمگ</span> </strong></span>
</div>
<div style="text-align: center;">
<span style="font-size: 16px;"><strong><span style="color: rgb(0, 204, 153);">معٍنآً </span><span style="color: rgb(255, 51, 153);">ۆآستمتعٍيَ</span></strong></span>
</div>
<div style="text-align: center;">
<span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>
</div>
<div style="text-align: center;">
<img src="http://www13.0zz0.com/2012/02/04/09/307496079.gif" /><span style="color: rgb(255, 51, 153);"><span style="font-size: 16px;"><strong><br /></strong></span></span>
</div>
<div style="text-align: center;">
<br />
</div>
<div style="text-align: center;">
<img src="http://i481.photobucket.com/albums/rr172/JJangella/line144.gif" /><br />
</div>
<div style="text-align: center;">
<img src="http://www7.0zz0.com/2015/07/27/22/274838753.gif" /><br />
</div>
<br />
<div align="center">
<table border="1">
<tbody>
<tr>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
<td>
<img src="http://www4.0zz0.com/2015/07/27/20/456425963.gif" /><br />
</td>
</tr>
<tr>
<td>
<br />
</td>
<td>
<br />
</td>
<td>
<br />
</td>
<td>
<br />
</td>
</tr>
</tbody>
</table><br /> <br />
</div>
<div>
<img src="http://i395.photobucket.com/albums/pp40/colonoscarpeay/11Random%20Pixels/1552913dehu8u46uf.gif" /><br />
</div>
</div>
مواضيع مماثلة
» مشكلة فى التشكيلات العامة
» مشكلة في وضع اعلان من التشكيلات العامه
» توجد لدي مشكلة في التشكيلات العامه
» مشكلة في التشكيلات العامة !!!! سساعدوني
» مشكلة غريبة في التشكيلات العامة
» مشكلة في وضع اعلان من التشكيلات العامه
» توجد لدي مشكلة في التشكيلات العامه
» مشكلة في التشكيلات العامة !!!! سساعدوني
» مشكلة غريبة في التشكيلات العامة
منتدى الدعم و المساعدة لأحلى المنتديات :: منتدى الدعم والمساعدة :: مشاكل في تنسيق مظهر أو تصميم أو صور أو الوان المنتدى :: أرشيف قسم "مشاكل في تنسيق مظهر المنتدى"
صفحة 1 من اصل 1
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى