forked from next-theme/hexo-theme-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
(function ($) { | ||
$.fn.snow = function (options) { | ||
$('body').append('<div id="snow"></div>'); | ||
var $flake = $('<div id="snowbox" />').css({ 'position': 'fixed', 'z-index': '-1', 'top': '-50px' }).html('❄'), | ||
defaults = { | ||
minSize: 10, | ||
maxSize: 20, | ||
newOn: 1000, | ||
flakeColor: "#AFDAEF" /* 此处可以定义雪花颜色,若要白色可以改为#FFFFFF */ | ||
}, | ||
options = $.extend({}, defaults, options); | ||
var interval = setInterval(function () { | ||
var documentHeight = $(document).height(); | ||
var documentWidth = $(document).width(); | ||
var startPositionLeft = Math.random() * documentWidth - 100, | ||
startOpacity = 0.5 + Math.random(), | ||
sizeFlake = options.minSize + Math.random() * options.maxSize, | ||
endPositionTop = documentHeight - 200, | ||
endPositionLeft = startPositionLeft - 500 + Math.random() * 500, | ||
durationFall = documentHeight * 10 + Math.random() * 5000; | ||
$flake.clone().appendTo('#snow').css({ | ||
left: startPositionLeft, | ||
opacity: startOpacity, | ||
'font-size': sizeFlake, | ||
color: options.flakeColor | ||
}).animate({ | ||
top: endPositionTop, | ||
left: endPositionLeft, | ||
opacity: 0.2 | ||
}, durationFall, 'linear', function () { | ||
$(this).remove() | ||
}); | ||
}, options.newOn); | ||
}; | ||
})(jQuery); | ||
$(function () { | ||
$.fn.snow({ | ||
minSize: 5, /* 定义雪花最小尺寸 */ | ||
maxSize: 50,/* 定义雪花最大尺寸 */ | ||
newOn: 300 /* 定义密集程度,数字越小越密集 */ | ||
}); | ||
}); |