عدد المساهمات : 1366معدل النشاط : 4249السُمعة : 14
موضوع: رد: كان كودين جافه لتشغيل الصور المبوبه للصندوق الماسي الخميس 2 ديسمبر 2021 - 1:54
لقيتهم والحمد لله بطريق الصدفه عند بحثي على قوقال منتدى واحد يملكهم بس وهدول الكودين اللي يريد يستفاد منهم وكي يبقوا بمنتدى الدعم للحفض على الاقل بموضوع كود جافا عدد اثنين تنشرهم على جميع الصفحات وسجل الاول
$video.get(0).currentTime = 0; // Play video from the start $video.trigger('play'); } });
});
الثاني
الكود:
(function() { 'GIFACTIF - GIPHY PLUGIN FOR THE FORUMACTIF SCEDITOR'; 'REPOSITORY : https://github.com/SethClydesdale/gifactif'; 'SEARCH API BY : https://github.com/Giphy/GiphyAPI';
// return if gifactif has been initialized if (window.gifactif) { if (window.console && console.warn) { console.warn('gifactif has already been initialized'); } return; }
// setup global object window.gifactif = { key : 'dc6zaTOxFJmzC', // PUBLIC BETA KEY limit : 26, // max image results delay : 200, // delay before searches commence (200ms) auto_close : true,
// general language settings lang : { searching : 'بحث ...', not_found : 'لا يوجد نتائج.. <img src="https://2img.net/i/fa/i/smiles/icon_sad.gif" style="margin:0;vertical-align:middle;"/>' },
// search for a GIPHY gif search : function (query) { if (gifactif.timeout) { gifactif.abort(); // abort ongoing searches and requests }
if (query) {
// set a small timeout in case the user is still typing gifactif.timeout = window.setTimeout(function() { gifactif.reset(true, gifactif.lang.searching); gifactif.query = encodeURIComponent(query);
gifactif.request = $.get('http://api.giphy.com/v1/gifs/search?q=' + gifactif.query + '&limit=' + gifactif.limit + '&rating=pg-13&api_key=' + gifactif.key, function(data) { // update global data such as page offsets for scrolling gifactif.request = null; gifactif.offset = data.pagination.offset + gifactif.limit; gifactif.offset_total = data.pagination.total_count;
gifactif.reset(true); // reset HTML content gifactif.addGIF(data); // send data to be parsed });
}, gifactif.delay);
} else { gifactif.reset(true); } },
// abort ongoing searches and requests abort : function () { if (gifactif.timeout) { window.clearInterval(gifactif.timeout); gifactif.timeout = null; }
if (gifactif.request) { gifactif.request.abort(); gifactif.request = null; } },
// add gifs to the result list addGIF : function (data, loadMore) { // setup data and begin parsing results var gif = data.data, i = 0, j = gif.length, list = $('<div class="gifactif_imagelist" />')[0];
if (j) { for (; i < j; i++) { list.appendChild($('<img id="' + gif[i].id + '" src="' + gif[i].images.fixed_width.url + '" />').click(gifactif.insert)[0]); } } else if (!loadMore) { gifactif.reset(true, gifactif.lang.not_found); }
// add results to the result list $('#gifactif_results', gifactif.dropDown).append(list); },
// listen to the scrolling so we can add more gifs when the user reaches the bottom scrolling : function (that) { if (that.scrollHeight - that.scrollTop === that.clientHeight) { gifactif.loadMore(); } },
// load more results once the user has scrolled through the last results loadMore : function () { if (gifactif.offset < gifactif.offset_total) { gifactif.request = $.get('http://api.giphy.com/v1/gifs/search?q=' + gifactif.query + '&offset=' + gifactif.offset + '&limit=' + gifactif.limit + '&rating=pg-13&api_key=' + gifactif.key, function(data) { gifactif.request = null; gifactif.offset = data.pagination.offset + gifactif.limit; gifactif.offset_total = data.pagination.total_count;
gifactif.addGIF(data, true); // send data to be parsed }); } },
// inserts the gif into the editor insert : function () { // add the gif to the editor and close the dropdown gifactif.callback('http://media0.giphy.com/media/' + this.id + '/giphy.gif');
if (gifactif.auto_close) { gifactif.editor.closeDropDown(true); gifactif.reset(); } },
// reset the dropdown fields reset : function (resultsOnly, newContent) { $('#gifactif_results', gifactif.dropDown).html(newContent ? newContent : '');
if (!resultsOnly) { $('#gifactif_search', gifactif.dropDown).val(''); } } };
// bind keyup event to search input $('#gifactif_search', gifactif.dropDown)[0].onkeyup = function(e) { var k = e.keyCode;
// ignore specific key inputs to prevent unnecessary requests if (k && (k == 16 || k == 17 || k == 18 || k == 20 || k == 37 || k == 38 || k == 39 || k == 40)) { return; } else { gifactif.search(this.value); } };
// initilize gifactif $(gifactif.init); }());
العراقي الطائي
عدد المساهمات : 1366معدل النشاط : 4249السُمعة : 14
موضوع: رد: كان كودين جافه لتشغيل الصور المبوبه للصندوق الماسي الخميس 2 ديسمبر 2021 - 1:55
كونان2000 احلى نائب
عدد المساهمات : 1755معدل النشاط : 3634السُمعة : 320
موضوع: رد: كان كودين جافه لتشغيل الصور المبوبه للصندوق الماسي الخميس 2 ديسمبر 2021 - 2:04
مرحبا اخي @العراقي الطائي هل تريد التعديل ام تريد نشرهم في قسم التقنيات المتقدمة
اذا تريد وضعم في قسم التقنيات لا تنشرهم على العام بل لازم اول ترسلهم في قسم المعاينة هنا ولا تنسى وضع صوره لمعاينة الخاصيه + ذكر النسخه اللتي يعمل عليها الكود والنسخ التي لا يعمل الكود عليها
بعدها انتظر موافقة الادارة على نشره
العراقي الطائي يعجبه هذا الموضوع
العراقي الطائي
عدد المساهمات : 1366معدل النشاط : 4249السُمعة : 14
موضوع: رد: كان كودين جافه لتشغيل الصور المبوبه للصندوق الماسي الخميس 2 ديسمبر 2021 - 2:05
شكرا كونان
كونان2000 يعجبه هذا الموضوع
كونان2000 احلى نائب
عدد المساهمات : 1755معدل النشاط : 3634السُمعة : 320
موضوع: رد: كان كودين جافه لتشغيل الصور المبوبه للصندوق الماسي الخميس 2 ديسمبر 2021 - 2:07