(function($) {
    $.fn.snow = function(options) {
        var $flake = $('<div >),
            documentHeight = $(document).height(),
            documentWidth = $(document).width(),
            defaults = { minSize: 10, maxSize: 20, newOn: 2000, flakeColor: "red" },
            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);
$.fn.snow({ minSize: 5, maxSize: 50, newOn: 2000, flakeColor: 'red' });

 

相关文章:

  • 2021-08-22
  • 2022-12-23
  • 2021-08-18
  • 2021-11-04
  • 2021-09-03
  • 2022-12-23
  • 2021-08-28
  • 2021-12-29
猜你喜欢
  • 2022-01-06
  • 2022-12-23
  • 2021-06-06
  • 2022-12-23
  • 2021-07-23
  • 2021-05-30
  • 2021-09-05
相关资源
相似解决方案