사용자:Amasia/common.js: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
7번째 줄: 7번째 줄:
[
[
"혹시 제 이름 아세요?.",
"혹시 제 이름 아세요?.",
"한번 제가 당신을 꼬옥 안아봐도 될까요?",
"혹시 힘드시다면 한번 제가 당신을 꼬옥 안아봐도 될까요?",
"혹시 어디 가시나요?",
"혹시 어디 가시나요?",
"이상하게 당신을 보면 마음이 너무 편해져요.이건 무슨 느낌일까요?"
"이상하게 당신을 보면 마음이 너무 편해져요.이건 무슨 느낌일까요?",
 
"혹시 저 안아주실 수 있으세요?그러면 너무 행복할 것 같아요."
];
];
   
   

2015년 10월 12일 (월) 22:39 판

var isMobile = false;
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){ isMobile = true; } 
if(isMobile==false) { $('head').append('<script src=\'/index.php?title=사용자:Amasia/as.js&action=raw&ctype=text/javascript\'><\/script>');
var Amasia = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQlzDLcgE4o5tJKPyAcSGJrqkFxjFj600BhTV94mCg5TCkOHWMh";
 
var Amasia_comment = 
[
"혹시 제 이름 아세요?.",
"혹시 힘드시다면 한번 제가 당신을 꼬옥 안아봐도 될까요?",
"혹시 어디 가시나요?",
"이상하게 당신을 보면 마음이 너무 편해져요.이건 무슨 느낌일까요?",
"혹시 저 안아주실 수 있으세요?그러면 너무 행복할 것 같아요."
];
 
mascot.AddImage(Amasia);
mascot.ShowMessage(Amasia_comment[randomRange(0,Amasia_comment.length)]);
var temp = function(){
	var param = 
	{
		"action":"query",
		"meta":"notifications",
		"notlimit":10,
		"format":"json"
	};
	$.ajax("/api.php",
	{
		data:param,
		dataType:"json"
	})
	.done(function(res)
	{
		var list_o = res.query.notifications.list;
		var list = [];
		for(var key in list_o)
		{
			list.push(list_o[key]);
		}
		var unread_message = [];
		for(var i = 0 ; i < list.length ; i++)
		{
			if(list[i].read == null && list[i].type != "page-linked")
			{
 
				unread_message.push(list[i]);
			}
		}
		if(unread_message.length != 0)
		{
			mascot.ShowMessage("<a style='color:#FFF;' href='/wiki/"+ encodeURIComponent(unread_message[unread_message.length - 1].title.full)  + "'>길에서 주웠는데<br>혹시 누군지 아세요? </a>");
		}
		else
		{
 
		}
	});
};
temp();
setInterval(temp,1000 * 20); }