| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/chatme24.com/wwwroot/_frameworks/main/mixer/js/ |
Upload File : |
var cursor = {x:0, y:0};
if (navigator.appName=="Netscape")
{
document.captureEvents( Event.MOUSEMOVE );
document.onmousemove = getCoord;
}
function getCoord( event )
{
cursor.x = event.pageX;
cursor.y = event.pageY;
}
function show_face(e,d) {
var obj = document.getElementById(d).style;
if (navigator.appName=="Netscape")
{
cursor.x -= 20;
cursor.y -= 115;
}
else
{
var de = document.documentElement;
var b = document.body;
cursor.x = event.clientX + (de.scrollLeft || b.scrollLeft) - (de.clientLeft || 0) - 20;
cursor.y = event.clientY + (de.scrollTop || b.scrollTop) - (de.clientTop || 0) - 110;
}
obj.visibility = 'visible';
obj.left = cursor.x + 'px';
obj.top = cursor.y + 'px';
}
function hide_face(d)
{
var obj = document.getElementById(d).style;
obj.visibility = 'hidden';
obj.left = '-1000px';
obj.top = '-1000px';
cursor.x = 0;
cursor.y = 0;
}
function show_face_jq(popup_usr, e) {
var e = e || window.event,
offset = $(window).scrollTop();
if (typeof e != 'undefined') {
var top_popup = e.clientY - 115 + offset,
left_popup = e.clientX - 20;
}
$('#'+popup_usr).css({'visibility':'visible', 'left':left_popup + 'px', 'top': top_popup + 'px'})
}
function hide_face_jq(popup_usr)
{
$('#'+popup_usr).css('visibility', 'hidden');
}