المشاركة رقم تم النشر فى :23 - 05 - 2022
.AWARDS
المدير العام
وسام الاداره
المدير العام
وسام المدير العام
وسام وارث سنابل العطاء
شكرا الاداره
وسام التقييم الحصري 150 تقييم
وسام الاداره الحصري
وسام الحضور الدائم
شكرا لوفائكم
وسام الالفيه
الف موضوع شكرا الاداره
SMS ~ [+ ]
razan
رقم العضوية: 1
معينه بروفايلك [+]
♛لونك المفضل» : ♛عدد المساهمات : 3544 السمعه♛» : 71 ♛تاريخ الميلاد : 03/03/1990 ♛تاريخ التسجيل » : 06/12/2012 ♛ النقاط المكتسبه : 20105 العمر : 34 الابداع : التصميم احلى : الخبره : اساطير المنتدى..عَطَاؤهٌمْ ثَمِيْنّ ♥ :
موضوع: كود نجم اليوم للتكويد
تم النشر فى :23 - 05 - 2022
.
كود نجم اليوم للتكويد
لا انصح بتجريبه لانه لا يزال تحت التطوير
كود الهتمل
الكود: <table class="tborder" style="width: 63%" cellspacing="1" cellpadding="6" border="0" height="200"> <tbody><tr> <td class="thead" colspan="4" height="21"> <p align="center"><span lang="ar-sa"><font color="#FF0000" size="4"><b> <a href="http://www.3azb-el7sas.com/vb/showthread.php?t=32091" style="text-decoration: none"> <font color="#f9f9f9">نجوم الأسبوع الـ 51 </font></a></b></font></span></p></td></tr> <tr> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="14%" style=""> <p align="center"><font color="#f9f9f9"><b>نجوم الاسبوع الـ 51 </b></font></p></td> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="25%" style=""> <p align="center"><font color="#d9b608"> <span style="font-weight: 700; background-color: #000000"> عبادى - ألاسمر </span></font></p></td> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="23%" rowspan="3" align="center" style=""> <a href="http://www.3azb-el7sas.com/vb/showthread.php?t=32091"> <img border="0" src="http://www.3azb-el7sas.com/vb/image.php?u=549&dateline=1509740538" width="150" height="300"></a></td> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="25%" rowspan="3" align="center" style=""> <a href="http://www.3azb-el7sas.com/vb/showthread.php?t=32091"> <img border="0" src="http://www.3azb-el7sas.com/vb/image.php?u=272&dateline=1506805182" width="150" height="300"></a></td> </tr> <tr> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="14%" style=""> <p align="center"><font color="#f9f9f9"><span lang="ar-sa"><b>جوائز</b></span></font></p></td> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="25%" style=""> <p align="center"><font color="#d9b608"><b>300 مشاركة + 300 تقييم + وسام + لون مختلف</b></font></p></td> </tr> <tr> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="14%" style=""> <p align="center"> <b> <font color="#f9f9f9">الجنسية</font><span lang="ar-sa"><font color="#000000"> </font></span> </b></p></td> <td class="alt2" onmouseover="this.style.backgroundColor='#FFFFFF';" onmouseout="this.style.backgroundColor='';" nowrap="" width="25%" style=""> <p align="center"><font color="#d9b608"><b>مصرى - فلسطينية</b></font></p></td> </tr> </tbody></table>
كود الجافا
الكود: const unlocker = (() => { // a raw script to be into page, // because content_script's access to BOM is restricted by Chrome // see: https://developer.chrome.com/extensions/content_scripts#isolated_world function agent() { let unlock = false document.addEventListener('allow_copy', (event) => { unlock = event.detail.unlock }) const copyEvents = [ 'copy', 'cut', 'contextmenu', 'selectstart', 'mousedown', 'mouseup', 'mousemove', 'keydown', 'keypress', 'keyup', ] const rejectOtherHandlers = (e) => { if (unlock) { e.stopPropagation() if (e.stopImmediatePropagation) e.stopImmediatePropagation() } } copyEvents.forEach((evt) => { document.documentElement.addEventListener(evt, rejectOtherHandlers, { capture: true, }) }) } const logger = { log(...args) { // return console.log(...args) }, error(...args) { // return console.error(...args) }, } const JS_ELEM_ID = 'allow-copy_script' const injectAgent = (wnd = window.top) => { try { const doc = wnd.document if (!doc.getElementById(JS_ELEM_ID)) { const script = doc.createElement('SCRIPT') script.id = JS_ELEM_ID script.textContent = `(${agent})()` doc.documentElement.append(script) } } catch (error) { logger.error('[simple allow copy] cannot inject agent', error) } } const enableAgent = (wnd = window.top) => { try { const event = new CustomEvent('allow_copy', { detail: { unlock: true } }) wnd.document.dispatchEvent(event) } catch (error) { logger.error('[simple allow copy] cannot enable agent', error) } } const disableAgent = (wnd = window.top) => { try { const event = new CustomEvent('allow_copy', { detail: { unlock: false } }) wnd.document.dispatchEvent(event) } catch (error) { logger.error('[simple allow copy] cannot disable agent', error) } } const CSS_ELEM_ID = 'allow-copy_style' const addCss = (wnd = window.top) => { try { const doc = wnd.document removeCss(wnd) const style = doc.createElement('STYLE') style.id = CSS_ELEM_ID style.innerHTML = `html, body, *, *::before, *::after, html body *, #${JS_ELEM_ID} ~ body * {\n` + ' -webkit-user-select: initial !important; \n' + ' user-select: initial !important; \n' + '} ' doc.documentElement.append(style) } catch (error) { logger.error('[simple allow copy] cannot add css', error) } } const removeCss = (wnd = window.top) => { try { const style = wnd.document.getElementById(CSS_ELEM_ID) if (style) { style.remove() } } catch (error) { logger.error('[simple allow copy] cannot remove css', error) } } const getFrameWindows = (wnd = window) => { try { const doc = wnd.document const iframes = [].slice.apply(doc.getElementsByTagName('iframe')) return [].concat( wnd, ...iframes .map((iframe) => iframe.contentWindow) .map((childWnd) => getFrameWindows(childWnd)), ) } catch (error) { logger.error('[simple allow copy] cannot get frame window', error) return [wnd] } } let windows = [] let isEnabled = false const enable = () => { isEnabled = true windows.forEach((wnd) => { enableAgent(wnd) addCss(wnd) }) } const disable = () => { isEnabled = false windows.forEach((wnd) => { disableAgent(wnd) removeCss(wnd) }) } if (isEnabled) { enable() } else { disable() } const initForFrames = () => { windows = getFrameWindows() logger.log('windows ', windows) windows.forEach((wnd) => injectAgent(wnd)) if (isEnabled) { enable() } else { disable() } } initForFrames() ;[1000, 3000, 5000, 10000].forEach((delay) => { setTimeout(initForFrames, delay) }) return { enable, disable, } })()
أسم العضو : razan هل ترغب في التعليق على رسالة العضو razan ؟
23.05.22 14:50
المشاركة رقم: # أسم العضو : razan هل ترغب في التعليق على رسالة العضو razan ؟
24.05.22 12:30
المشاركة رقم: # ڷــۄنۨ ̨ٻۧــﯣمۘــک ♛عدد المساهمات : 7 السمعه♛» : 3 ♛تاريخ الميلاد : 13/08/1991 ♛تاريخ التسجيل » : 23/04/2016 ♛ النقاط المكتسبه : 9478 العمر : 33 احلى : الخبره :
سُبْحَانَكَ اللَّهُمَّ وَبِحَمْدِكَ ، أَشْهَدُ أَنْ لا إِلهَ إِلَّا أَنْتَ أَسْتَغْفِرُكَ وَأَتْوبُ إِلَيْكَ
جزاك الله خير
أسم العضو : نجوى عادل 400 هل ترغب في التعليق على رسالة العضو نجوى عادل 400 ؟
الــرد الســـريـع
الاعضاء الدين شاركوا في الموضوع
تعليمات المشاركة
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى
كود HTML معطلة
أعلي 10 إحصائياتأكثر الأقسام شعبية أفضل المواضيع افضل 10 اعضاء فى منتدى آخر المشاركات