Mr.da3m مساعد الادارة
عدد المساهمات : 56 السٌّمعَة : 0 تاريخ التسجيل : 28/11/2013
| موضوع: عمل خاصية تغيير موقع البيانات الشخصية يمين او شمال خاصية جديدة الخميس نوفمبر 28, 2013 11:50 pm | |
| تغيير موقع البيانات الشخصية يمين او شمال
الكود الاول للنسخة phpBB3 فقط - الكود:
-
var CopyrightNotice = 'All rights reserved to the developer A7medvirus version works phpbb3 Allowed to amend the code by http://cod3ly.ace.st/ .'; function setprofile(loc) { if (loc=='left') { $('.postprofile').css({'float':'left','border-left':'none','border-right':'1px solid #c8c8c8'}); $('.postbody').css('float','right'); } //a7medvirus else { $('.postprofile').css({'float':'right','border-left':'1px solid #c8c8c8','border-right':'none'}); $('.postbody').css('float','left'); } } //a7medvirus function toggleprofile() { var x = my_getcookie('prloc'); if (x=='left') { x='right'; } else { x='left'; } my_setcookie('prloc',x,true); setprofile(x); } //a7medvirus $(function() { if ($('.addthis_button')[0]) { $('.addthis_button').eq(0).before('<button class="button2" title="Toggle post profile location" onclick="toggleprofile();"><img style="padding:0px 2px;" src="http://2img.net/i/fa/edit.png" /></button> • '); var x = my_getcookie('prloc'); if (x == null) {x = 'left';} my_setcookie('prloc',x,true); setprofile(x); } }); //Remember that copyright a7medvirus الكود للنسخة للنسخة Invision
- الكود:
-
var CopyrightNotice = 'All rights reserved to the developer A7medvirus version works Invision Allowed to amend the code http://cod3ly.ace.st/ by .'; function setprofile(loc) { if (loc=='left') { $('.postprofile').css({'float':'left','margin':'0px 0px 0px -18em'}); $('.post-container').css('margin','0px 0px 0px 18em'); } else { $('.postprofile').css({'float':'right','margin':'0px -18em 0px 0px'}); $('.post-container').css('margin','0px 18em 0px 0px'); } } // copyright a7medvirus function toggleprofile() { var x = my_getcookie('prloc'); if (x=='left') { x='right'; } else { x='left'; } my_setcookie('prloc',x,true); setprofile(x); } // copyright a7medvirus $(function() { if ($('.addthis_button')[0]) { $('.addthis_button').eq(0).before('<button class="button2" title="Toggle post profile location" onclick="toggleprofile();"><img style="margin:0px 2px;" src="http://2img.net/i/fa/edit.png" /></button>'); var x = my_getcookie('prloc'); if (x == null) {x = 'left';} my_setcookie('prloc',x,true); setprofile(x); } }); //Remember that copyright a7medvirus ملحوظة الاكواد توضع علي جميع الصفحات
|
|
فتحه ! ادارة المنتدى
عدد المساهمات : 86 السٌّمعَة : 0 تاريخ التسجيل : 27/11/2013 العمر : 26
| موضوع: رد: عمل خاصية تغيير موقع البيانات الشخصية يمين او شمال خاصية جديدة الجمعة نوفمبر 29, 2013 6:28 am | |
| |
|