Jump to content

AHMED MOSTAFA

Members
  • Posts

    1,367
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by AHMED MOSTAFA

  1. أضفته من زمان وكمان حذفته ورفعت النسخة المحسنة منه طورت التطبيق بالفعل والآن تقدر تنشر فيه اقتباسات، النسخة الأولى كانت مجرد تجربة ليس أكثر حكم واقتباسات – Apps on Google Play رابط التطبيق في المتجر https://play.google.com/store/apps/details?id=com.artisticloops.quotes
  2. تطبيق اقتباسات وحكم واقوال عربية انيق التصميم، سهل الاستخدام ويعمل بدون إنترنت. يحتوي على مجموعة كبيرة من الاقتباسات والحكم والاقوال العربية مقسمة إلى تصنيفات عديدة لتسهل عليك تصفحها اقتباسات عن الحياة، اقتباسات عن الصداقة، اقتباسات عن الحب... إلخ كل هذا وأكثر داخل التطبيق التصنيفات -الاقتباسات والحكم والأقوال- المتاحة حالياً هي:- - الحياة - الصداقة - السعادة - الحب - الجمال - النجاح - العادات - الشعور بالوحدة - الزواج - الليل - المجازفة - الحزن - السفر يمكنك نسخ الاقتباس الذي يعجبك أو يمكنك مشاركته مع أصدقائك كما أنك تستطيع إضافته إلى قائمة المفضلة الخاصة بك لترجع إليه بسرعة وسهولة. يمكنك مشاركة الاقتباسات والحكم في جميع تطبيقات التواصل الاجتماعي مثل فيسبوك، انستجرام، تويتر، واتس آب وغيرهم. الميزات القادمة في التطبيق في التحديث القادم:- - أقسام لغات مختلفة ليس فقط اللغة العربية - خلفيات عديدة للاختيار بينها - الوان عديدة لتختار المظهر المناسب لك - تجديد الاقتباسات بشكل يدوي او تلقائي للحصول على أجدد الاقتباسات المضافة - تطوير واجهة المستخدم لتصبح اكثر سهولة وإضافة لمسات جمالية - تمكين المستخدم من إضافة اقتباسات خاصة به داخل التطبيق - اخذ لقطة للشاشة من داخل التطبيق وحفظها في معرض الصور الخاص بك رابط التطبيق اضغط هنا للذهاب لرابط التطبيق على متجر بلاي
  3. بسم الله الرحمن الرحيم السلام عليكم ورحمة الله وبركاته قد بدأت في سلسلة شرح Javascript فإذا كنت مهتما، قم بزيارة قناتي على اليوتيوب من هنا وشكرا على مرورك
  4. @NitroNN انت ملاحظ اسماء التاجات ؟ radio / checkbox على العموم مش هتفرق الهدف مجرد تجربة مش اكتر .. شكرا لإهتمامك بالموضوع
  5. بسم الله الرحمن الرحيم ... السلام عليكم ورحمة الله وبركاته بعد رحلة طويلة مع لغة Lua بدأت التعلم في لغات البرمجة والتصميم الخاصة بالويب وحبيت اشاركم تجربتي HELLO WORLD After along journey learning Lua, I've started learning web design and web development And I would like to share my experience with you hoping that you like it معروف إن في لغة HTML لا يوجد (radiobutton/checkbox) مباشر وإنما الحل انك تعمل input وتغير نوعه we know that HTML doesn't have a direct *checkbox/radio* tags but the method is to create an input and change its type <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <input type="checkbox" value="Click 1" > <input type="checkbox" value="Click 2" > <input type="checkbox" value="Click 3" > <input type="radio" name="g" value="Click 4" > <input type="radio" name="g" value="Click 5" > <input type="radio" name="g" value="Click 6" > </body> </html> ودي الطريقة اللي هتكمل بيها باقي الشرح and that is what we going to use with HTML طيب ده موضوعه سهل،، أما بالنسبة لتعديل التصميم أو الهيكل شئ مش سهل بالمرة أو مزعج نوعا ما لأن مفيش تاج معين مثلا تقدر تعدل بيه ولكن بفضل الله قدرت اعمل تاجات جديدة في ok, that was an easy part.. but the problem is in designing as it doesn't have a direct tags to be edited But, I've created a new tags/attr to make the design easier CSS ( checkbox, radio, bg, check ) checkbox { /* css code */ } checkbox bg { /* css code */ } checkbox bg check { /* css code */ } checkbox[checked=true] bg { /* css code */ } checkbox[checked=true] bg check { /* css code */ } radio { /* css code */ } radio bg { /* css code */ } radio bg check { /* css code */ } radio[checked=true] bg { /* css code */ } radio[checked=true] bg check { /* css code */ } التفاصيل radio: الهيكل العام للعنصر و يحتوي على الشكل الداخلي كله radio: the hole element checkbox: الهيكل العام للعنصر و يحتوي على الشكل الداخلي كله checkbox: the hole element bg: الخلفية الخاصة بالشكل الداخلي bg: the background of the checkbox/radio itself check: الأيقونة اللي داخل الخلفية الخاصة بالشكل الداخلي check: the icon inside the bg طيب بالنسبة اكون الجافا سكربت javascript // created by Ahmed Mostafa "killerProject" alert ("the best code i have ever made\n\nBETA\n\nCreated By: Ahmed Mostafa 'killerProject'") msg = function (zmsg) {console.log(zmsg)} function changeInput (_input) { if ( _input.getAttribute("modified") ) { return } if ( true ) { /* ignored */ var op = _input.parentElement; var np = document.createElement( _input.type /*"label"*/ ); op.replaceChild (np, _input); np.appendChild(_input); np.appendChild ( document.createTextNode( _input.value ) ); np.style.display = "inline-block"; np.style.overflow = "auto"; np.setAttribute( "child", _input ); np.setAttribute( "modified", true); np.setAttribute( "checked", _input.checked); _input.setAttribute( "modified", true); /* var w = _input.offsetWidth; var h = _input.offsetHeight; np.style.width = w+"px"; np.style.height = h+"px"; */ np.style.position = "relative"; var pw = np.offsetWidth; var ph = np.offsetHeight; var bg = document.createElement( "bg" ); bg.appendChild ( document.createTextNode( "" ) ); np.appendChild( bg ); var check = document.createElement( "check" ); check.appendChild ( document.createTextNode( "" ) ); bg.appendChild( check ); bg.style.position = "position: absolute; z-index: 2;"; check.style.position = "position: absolute; z-index: 3;"; _input.style = "position: absolute; left: 0; top: 0; padding: 0; margin: 0; width: "+pw+"px; height: "+ph+"px; -webkit-appearance: none; moz-appearance: none; appearance: none; outline: none; background: red; opacity: 0; z-index: 5;"; np.setAttribute( "class", _input.getAttribute("class") ); np.setAttribute( "id", _input.getAttribute("id") ); } } /* onchange = function () { changeInput (event.target) } */ function check_create () { var nInput = event.target; changeInput (nInput); var parent = nInput.parentElement; parent.setAttribute( "checked", nInput.checked); var all = document.getElementsByTagName ("input"); for ( let i = 0; i < all.length; i++ ) { if ( all[i].type == "radio" ) { let parent = all[i].parentElement; parent.setAttribute( "checked", all[i].checked); } } } onload = function () { var all = document.getElementsByTagName ("input"); for ( let i = 0; i < all.length; i++ ) { changeInput (all[i]) all[i].addEventListener("change", check_create); } } المميزات - advantages متاح فيه التعديل عن طريق الآي دي أو الكلاس Id, class (edit by id or class) سهولة التصميم بشكل كبير جدا (too easy to edit) تبسيط الاكواد في HTML, CSS (makes html, css *radio/checkbox* more easier to be edited) مثال على التعديل على ال CSS example (css) radio { padding-top: 5px; padding-left: 35px; width: 250px; height: 25px; background: #ccc5; border-radius: 45px; /*box-shadow: inset 0 0 0 1px #4a148c;*/ } checkbox { padding-top: 5px; width: 250px; height: 25px; padding-left: 55px; background: #ccc5; border-radius: 45px; /*box-shadow: inset 0 0 0 1px #4a148c;*/ } radio bg { transition: .5s; box-shadow: inset 0 0 0 2px #4a148c; position: absolute ; top: 2.5px; left: 2.5px; background: #fff0; width: 25px; height: 25px; border-radius: 50%; } radio check { transition: .5s; position: absolute ; top: 5px; left: 5px; background: #fff0; width: 15px; height: 15px; border-radius: 50%; box-shadow: inset 0 0 0 1px #4a148c; } checkbox bg { transition: .5s; box-shadow: inset 0 0 0 2px #4a148c; position: absolute ; top: 2.5px; left: 2.5px; background: #fff0; width: 50px; height: 25px; border-radius: 45px; } checkbox check { transition: .5s; position: absolute ; top: 5px; left: 5px; background: #fff0; width: 15px; height: 15px; border-radius: 45px; box-shadow: inset 0 0 0 1px #4a148c; } /* when true */ radio[checked=true] bg { transition: .5s; background: #b39ddb; } radio[checked=true] check { transition: .5s; background: #4a148c; } checkbox[checked=true] bg { transition: .5s; background: #b39ddb; } checkbox[checked=true] check { transition: .5s; background: #4a148c; left: 30px; } صورة للتصميم A picture أتمنى تقولولي رأيكم في الفكرة وشكرا ? Please, rate the Idea ?
  6. نورت المنتدى ياعم علي ?? عجبني جدا انك رابط السيرفر بموقع خارجي بنفسك وفرحان بمجهودك وخبرتك وربنا يزيدك معرفة بس بصراحة معجبنيش انك ترجع تاني للعبة لأنها ببساطة ماتت بالتوفيق ?⚘⚘
  7. الحاجة اللى نفعتني إني لعبت اللعبة دي واللى منها عرفت يعني ايه برمجة وازاي أدخل في مجال كويس يفيدني في المستقبل
  8. شكراً لك على مرورك الجميل الثيم هذا فيه بعض الاشياء اللي ماهي كاملة طبعاً مثال لون الجريد ليست وكنت جالس اطور فيه لكن حدثت الويندوز و راح مني وما ابي اسويه من جديد او حتى اعدل عليه ذذ فهذا بالنسبة لي في الوقت الحالي اخر شي بسويه فيه وما اعتقد اسويه اصلاً مرة ثانية شكراً لك على مرورك وتعليقك الجميل :]
  9. عيب الموضوع بأول شخص بيختفي بس ياخد الفلوس ??
  10. فيش فلوس ?? بس عايز اشارك معاك بس مشروع ف ام تي اي ولا مشروع ويب ؟ ولا مشروع من نوع تاني اصلا ولا اي
  11. Hello ariosJentu and thank you for your comment I can change its color and the girldlist's color too but the problem is ( I can't find the TEXT color code .. I should create it by myself ) The Text color is white so I should make the background's color black so you can see the text easily This is my first edit .. I didn't do everything But I am still working on it (I don't have enough time for the game I have other works too) Thank you .. ?
  12. السلام عليكم ورحمة الله وبركاته في هذا الموضوع البسيط حبيت اعرض عليكم ثيم بسيط للعبة ملاحظة: انا فقط عدلت ثيم موجود من قبل وهو Lighter black عدلت فيه الصورة + ملف التصميم CGUI.lnf صورة التحميل اضغط هنا بعد التحميل فقك الضغط وافتح الملف الموجود skins.exe وحط مسار اللعبة واضغط استخراج ومن داخل اللعبة اختار الثيم
  13. Hello guys i have edited the Lighter black skin ( CGUI.png and CGUI.lnf file ) and this is a photo for the new one so if you want to download it just click here how to install ? 1- download the file 2- extract the winrar file ( you will find skins.exe ) 3- open skins.exe 4- put your mta sa path 5- click Extract 6- set the skin form tha game's settings PLEASE RATE IT
  14. @Mr.BLack ما شرى المود المود ما زال للبيع اذا كنت مصري وتبي تشتري المود تواصل معي في المنتدى او على الفيس بوك الرسالة موجهة لأي شخص يريد شراء المود Facebook: https://www.facebook.com/ikillerProject
  15. كل شخص رقمه ظاهر له في حسابه ف مايحتاج يحفظ رقمه أما بالنسبة لفكرة حساب او حسابين جميلة لكن حذفت ام تي اي وشلت الجهاز لان بدأت دراسة ٣ ثانوي علمي رياضة .. دعواتكم يالطيبين وشكرا لك على تفاعلك ومرورك الجميل الفكرة موجودة فعليا نورت الموضوع يالطيب ?
  16. السلام عليكم ورحمة الله وبركاته تواصل معي خاص .. وان شاء الله بنخلص الموضوع وما بنختلف https://www.facebook.com/ikillerProject @,#Savage @justboy @#DesTroeyR @KhaledAlamri شكراً لكم على تفاعلكم
  17. انا اشوف ان الدي اكس تصميم فقط بمعنى ما فيه مثلاً حدث عند الضغط واشياء مثل هذي لهذا الجيو اسهل في هذي النقطة اما بالنسبة لسهولة التصميم الجيو اسهل لأنه فيه امكانيات مرة كثيرة مثلاً تسوي صورة داخل لوحة الخ اما الدي اكس فكل شي منفرد يعني كل شي له احداثياته الخاصة طبعاً هذا الشي موجود في الجيو كمان لكن بطريقة اسهل - من وجهة نظري لكن يمديك تسوي شي يشبه الدي اكس عن طريق الجيو والطريقة انك تسوي صورة لونها ابيض وتقدر من خلالها تسوي دي اكس من صورة الجيو guiCreateStaticImage ومن ناحية التغييرات فـ الدي اكس افضل و اسرع يعني مثلاً انتقال صورة من مكان لمكان آخر الخ -- كمان تقدر تربط الجيو بالدي اكس بس فيه اشياء كثيرة لازم تعرفها - اغلبها رياضيات و احداث -- هذا رأي خاص
  18. هذا تحقق اذا كان الـ sel لا يساوي -1 يكمل في الشي اللي انت حاطط عليه هذا التحقق
×
×
  • Create New...