|
大家试试看以下步骤 - 最好做给你女朋友看 :-)
1) 打开Chrome 浏览器,去 www.google.com;
2) 同时按以下3个键: Ctrl-Shift-J (在苹果的Mac上按 ⌥⌘J), 这个时候Chrome的下方会显示一个输入代码的Console 窗户;
3) Copy 以下的所有代码,然后Paste 到Chrome 的Console 窗户里面;
4) 按回车键(Enter)
/* Copyright (C) 2013, Uri Shaked, GDG Tel-Aviv Lead. */
var jq = document.createElement("script");
jq.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js");
jq.setAttribute("type", "text/javascript");
jq.onload = function () {
$ = jQuery;
function e(e, t) {
return e + Math.random() * (t - e)
}
function t(t) {
var n = "❤";
var r = {
position: "absolute",
top: 0,
color: "hsl(" + Math.ceil(e(340, 360)) + ", 100%, " + e(30, 70) + "%)",
left: e(0, t.width()) + "px",
opacity: 1,
"z-index": 50,
"font-size": e(16, 42) + "px"
};
var i = $("<div />").css(r).html(n).appendTo(t).fadeIn("fast");
var s = i.outerHeight(true);
i.animate({
top: t.height() - s + "px",
opacity: 0
}, 6e3, "linear", function () {
i.fadeOut("fast", function () {
i.remove()
})
})
}
$(function () {
setInterval(function () {
t($("body"))
}, 100)
})
};
document.getElementsByTagName("head")[0].appendChild(jq);
|
|