首页 > 其他 > 详细

123

时间:2017-10-13 13:13:12      阅读:326      评论:0      收藏:0      [点我收藏+]

<script>(function ($) { $.fn.snow = function (options) { var $flake = $(‘<div id="flake" />‘).css({ ‘position‘: ‘absolute‘, ‘top‘: ‘-50px‘ }).html(‘&#10052;‘), documentHeight = $(document).height(), documentWidth = $(document).width(), defaults = { minSize: 10, maxSize: 20, newOn: 500, flakeColor: "#FFFFFF" }, options = $.extend({}, defaults, options); var interval = setInterval(function () { var startPositionLeft = Math.random() * documentWidth - 100, startOpacity = 0.5 + Math.random(), sizeFlake = options.minSize + Math.random() * options.maxSize, endPositionTop = documentHeight - 40, endPositionLeft = startPositionLeft - 100 + Math.random() * 200, durationFall = documentHeight * 10 + Math.random() * 5000; $flake.clone().appendTo(‘body‘).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);<script>

123

原文:http://www.cnblogs.com/lbczzvv/p/7660474.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!