sam07
عدد المساهمات : 2 معدل النشاط : 4186 السُمعة : 0
| موضوع: كيف اغير شكل الماوس الثلاثاء 6 يناير 2015 - 12:31 | |
| ارجو اعطائي طريقة لتغيير شكل الماوس
عدل سابقا من قبل sam07 في الأربعاء 7 يناير 2015 - 17:48 عدل 1 مرات | |
|
stones
عدد المساهمات : 7462 معدل النشاط : 16426 السُمعة : 414
| موضوع: رد: كيف اغير شكل الماوس الثلاثاء 6 يناير 2015 - 12:33 | |
| | |
|
Michael_vx
عدد المساهمات : 1066 معدل النشاط : 7998 السُمعة : 69
| موضوع: رد: كيف اغير شكل الماوس الثلاثاء 6 يناير 2015 - 13:54 | |
| تفضل كود جميل جدا بيعطى ماوس متغير كل صفحة بالجافا سكربت على كل الصفحات
- الكود:
-
(function() { // Happy Halloween from Forumotion ! // You may change the cursor images below var type = 'random', cursor1 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu10.png', cursor2 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu11.png', cursor3 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu12.png', cursor4 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu13.png', cursor5 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu14.png', r = Math.floor(Math.random()*5), t = type.toLowerCase();
if (r === 0 && t === 'random' || t === 'cursor1') setCursor(cursor1); if (r === 1 && t === 'random' || t === 'cursor2') setCursor(cursor2); if (r === 2 && t === 'random' || t === 'cursor3') setCursor(cursor3); if (r === 3 && t === 'random' || t === 'cursor4') setCursor(cursor4); if (r === 4 && t === 'random' || t === 'cursor5') setCursor(cursor5);
function setCursor(cursor) { var s = document.createElement('STYLE'); s.type = 'text/css'; s.innerHTML = 'body, *:hover {cursor:url('+cursor+'),auto !important}'; document.head.appendChild(s); } })(); لتغيير الاشكال غير الروابط دى - الكود:
-
cursor1 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu10.png', cursor2 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu11.png', cursor3 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu12.png', cursor4 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu13.png', cursor5 = 'http://i39.servimg.com/u/f39/18/21/60/73/curseu14.png', بالاشكال اللى تحبها | |
|
stones
عدد المساهمات : 7462 معدل النشاط : 16426 السُمعة : 414
| موضوع: رد: كيف اغير شكل الماوس الثلاثاء 6 يناير 2015 - 14:35 | |
| وهذا صورة وحده فقط بدلا من خمس صور تم الاختصار الى صورة وحده ايضا يوضع في الجافا - الكود:
-
(function() { // Happy Halloween from Forumotion ! // You may change the cursor images below var type = 'random', cursor1 = 'رابط الصورة', r = Math.floor(Math.random()*1), t = type.toLowerCase(); if (r === 0 && t === 'random' || t === 'cursor1') setCursor(cursor1); function setCursor(cursor) { var s = document.createElement('STYLE'); s.type = 'text/css'; s.innerHTML = 'body, *:hover {cursor:url('+cursor+'),auto !important}'; document.head.appendChild(s); } })(); | |
|
sam07
عدد المساهمات : 2 معدل النشاط : 4186 السُمعة : 0
| موضوع: رد: كيف اغير شكل الماوس الأربعاء 7 يناير 2015 - 17:45 | |
| | |
|