国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 語(yǔ)言 > JavaScript > 正文

jquery插件jquery倒計(jì)時(shí)插件分享

2024-05-06 15:57:54
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
jquery倒計(jì)時(shí)插件分享,大家參考使用吧

復(fù)制代碼 代碼如下:


$(document).ready(function () {
            /* 延遲函數(shù)  */
            jQuery.fn.delay = function (time, func) {
                return this.each(function () {
                    setTimeout(func, time);
                });
            };
            jQuery.fn.countDown = function (settings, to) {
                settings = jQuery.extend({
                    startFontSize: '36px',
                    endFontSize: '12px',
                    duration: 1000,
                    startNumber: 10,
                    endNumber: 0,
                    callBack: function () { }
                }, settings);
                return this.each(function () {
                    if (!to && to != settings.endNumber) { to = settings.startNumber; }
                    //設(shè)定倒計(jì)時(shí)開始的號(hào)碼
                    $(this).text(to).css('fontSize', settings.startFontSize);
                    //頁(yè)面動(dòng)畫
                    $(this).animate({
                        'fontSize': settings.endFontSize
                    }, settings.duration, '', function () {
                        if (to > settings.endNumber + 1) {
                            $(this).css('fontSize', settings.startFontSize).text(to - 1).countDown(settings, to - 1);
                        }
                        else {
                            settings.callBack(this);
                        }
                    });
                });
            };
            //使用
            $('#countdown').countDown({
                startNumber: 10,
                callBack: function (me) {
                    $(me).text('All done! This is where you give the reward!').css('color', '#090');
                }
            });
        });

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 越西县| 永平县| 遂宁市| 儋州市| 南召县| 武义县| 五莲县| 石门县| 彰武县| 陆丰市| 平塘县| 环江| 额尔古纳市| 绍兴市| 金溪县| 高淳县| 朝阳县| 陇西县| 商丘市| 土默特右旗| 万荣县| 榆中县| 潼关县| 万山特区| 高淳县| 佳木斯市| 奉节县| 绥中县| 丰镇市| 巴彦县| 宁陕县| 玉田县| 望谟县| 江北区| 收藏| 闸北区| 石狮市| 甘孜| 洪雅县| 长海县| 涟水县|