Global.js: Forskelle mellem versioner
Hop til navigation
No edit summary |
(Fjerner version 10586 af Innogames (diskussion)) Tag: Omgjort |
||
Linje 1: | Linje 1: | ||
var anunt_list | var anunt_list | ||
var nr_anunturi | var nr_anunturi | ||
var anunt_curent | var anunt_curent | ||
var anunt_timer, hint_timer; | var anunt_timer, hint_timer; | ||
function ch_hints() { | function ch_hints() { | ||
Linje 18: | Linje 17: | ||
} | } | ||
},"xml"); | },"xml"); | ||
} | |||
} | }); | ||
} | } | ||
Linje 32: | Linje 30: | ||
$(anunt_list[anunt_curent]).fadeIn(); | $(anunt_list[anunt_curent]).fadeIn(); | ||
}); | }); | ||
} | } | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$(". | $(".Aankondiging_Hoofdpagina").hide(); | ||
anunt_list = $(". | anunt_list = $(".Aankondiging_Hoofdpagina").toArray(); | ||
nr_anunturi=anunt_list.length; | nr_anunturi=anunt_list.length; | ||
anunt_curent=0; | anunt_curent=0; | ||
Linje 63: | Linje 47: | ||
} | } | ||
} | } | ||
if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != " | if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != "Overleg:FAQ") ) { | ||
$("#content").before("<div style='clear:both'></div><div id=' | $("#content").before("<div style='clear:both'></div><div id='grepo_nl_hints_container' style='padding: 10px 15px; background: url("/skins/grepolis/content_bg.jpg") repeat scroll 0% 0% transparent; width: 772px; min-height:1px; text-align: center;'> <span id='grepo_nl_hints' style='width:80%'></span></div>"); | ||
ch_hints(); | ch_hints(); | ||
hint_timer=window.setInterval("ch_hints()",30000); | hint_timer=window.setInterval("ch_hints()",30000); | ||
$("# | $("#grepo_nl_close_hints").click(function() { | ||
hint_timer=window.clearInterval(hint_timer); | hint_timer=window.clearInterval(hint_timer); | ||
$("# | $("#grepo_nl_hints").slideUp("slow", function() { | ||
$("# | $("#grepo_nl_close_hints").hide(); | ||
$("# | $("#grepo_nl_hints_image").hide(); | ||
$("# | $("#grepo_nl_hints_container").css("min-height","0px"); | ||
}); | }); | ||
}); | }); | ||
} | } | ||
}); | }); |
Versionen fra 22. jul. 2019, 12:25
var anunt_list var nr_anunturi var anunt_curent var anunt_timer, hint_timer;
function ch_hints() {
var hint_nr=Math.round(Math.random()*45); $("#grepo_ro_hints").slideUp("slow"); hint_nr++; $.get("/index.php",{title:"Script:Grepolis_FAQ ",action:"raw",section:hint_nr}, function(response,succes) { if (succes) { resp= "" + response $.get("/api.php",{action:"parse",text:resp,format:"xml"},function(xresp,succ) { if (succ) { $("#grepo_ro_hints").html(xresp.getElementsByTagName("text")[0].childNodes[0].nodeValue); } },"xml"); } });
}
function ch_anunt() {
$(anunt_list[anunt_curent]).fadeOut("normal",function() { anunt_curent++; if (anunt_curent >= nr_anunturi) { anunt_curent=0; } $(anunt_list[anunt_curent]).fadeIn(); });
}
$(document).ready(function() {
$(".Aankondiging_Hoofdpagina").hide(); anunt_list = $(".Aankondiging_Hoofdpagina").toArray(); nr_anunturi=anunt_list.length; anunt_curent=0; // console.info("a:"+anunt_list+"; nr:"+nr_anunturi); if (nr_anunturi > 1) { $(anunt_list[0]).fadeIn(); anunt_timer=window.setInterval("ch_anunt()",5000); } else { if (nr_anunturi > 0) { $(".anunt_primapagina").fadeIn(); } } if ((wgAction != "edit") && (wgCanonicalNamespace != "Special") && (wgCanonicalNamespace != "Template") && (wgCanonicalNamespace != "Help") && (wgCanonicalNamespace != "Project") && (wgCanonicalNamespace != "File") && (wgTitle != "Global.js") && (wgTitle != "Overleg:FAQ") ) {
$("#content").before("
");
ch_hints(); hint_timer=window.setInterval("ch_hints()",30000); $("#grepo_nl_close_hints").click(function() { hint_timer=window.clearInterval(hint_timer); $("#grepo_nl_hints").slideUp("slow", function() { $("#grepo_nl_close_hints").hide(); $("#grepo_nl_hints_image").hide(); $("#grepo_nl_hints_container").css("min-height","0px"); }); }); }
});