今天看见好友作死的发网页祝福,原来2009年的圣诞节来了….
每年的节日我都是一个人默默的过,没有热闹的喧嚣,只有个人宁静的感悟…
我还依旧忙碌在自己狭小的网络圈子里,发现有很多的圣诞祝福网页都夹杂着大量的广告,弹窗等等,还有禁止右键查看源代码…
从网上下载了一个网页源码查看工具,然后自己稍作修改,变成了自己做了圣诞祝福网页了,于是把源码和图片下载到光芒服务器,做成光芒的圣诞祝福..
自由随意给各位网友的圣诞祝福是:http://41free.com/shengdan.html
附:禁止右键右键查看源代码:
<script language=”JavaScript”>
<!–
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//–>
</script>