Ben gitter açılan sistemini kullanmak için site kurmak. Javascript şöyle:
$(document).ready(function(){
setTimeout(function() {
$.gritter.add({
title: 'Welcome!',
text: 'This appears to be your first time playing. Blablabla',
time: '25000'
});
}, 500);
setTimeout(function() {
$.gritter.add({
title: 'Walkthrough',
text: 'A walkthrough was setup ...',
time: ''
});
}, 30000);
setTimeout(function() {
$.gritter.add({
title: 'You got mail',
text: 'You have received a message from x ',
time: ''
});
}, 36000);
Bu 3 pop-up bir örnektir. ne yapmak istiyorum böyle diziler var ise:
$popup_title[0] = "Welcome!";
$popup_text[0] = "This appears to be ...");
$popup_time[0] = 25000;
$popup_title[1] = "Walkthrough";
$popup_text[1] = "A basic blabla ...");
$popup_time[1] = "";
Ve bu diziler aracılığıyla döngü (onlar boş değil değilse) ve diziler dayalı javascript oluşturmak.