jQuery плагин для вывода текста по букве.

28.12.2016

Вместо каждой буквы выводятся [], потом мигают и меняются на букву.

pic1

01.html (Download)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<html>
 
<head>
  <title></title>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
  <script src="/f.js" type="text/javascript"></script>
 
<script type="text/javascript">
$(document).ready(function(){
 
    var options = {
        newsList: "#ticker",
        startDelay: 10,
        placeHolder1: " []"
    }
    $().newsTicker(options);
 
});
</script>
</head>
 
<body>
 
<div id="lenta">
 
    <ul id="ticker">
        <li><a href="#1">01:20| Длинный текст №1 </a></li>
        <li><a href="#2">02:30| Длинный <b>текст</b> №2 </a></li>
        <li><a href="#3">03:40| Длинный текст №3 </a></li>
    </ul>
 
</div>
 
</body>
 
</html>

f.js (Download)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
jQuery.extend(jQuery.easing, {
    easeIn: function (x, t, b, c, d) {
        return jQuery.easing.easeInQuad(x, t, b, c, d);
    },
    easeOut: function (x, t, b, c, d) {
        return jQuery.easing.easeOutQuad(x, t, b, c, d);
    },
    easeInOut: function (x, t, b, c, d) {
        return jQuery.easing.easeInOutQuad(x, t, b, c, d);
    },
    expoin: function (x, t, b, c, d) {
        return jQuery.easing.easeInExpo(x, t, b, c, d);
    },
    expoout: function (x, t, b, c, d) {
        return jQuery.easing.easeOutExpo(x, t, b, c, d);
    },
    expoinout: function (x, t, b, c, d) {
        return jQuery.easing.easeInOutExpo(x, t, b, c, d);
    }
});
jQuery.extend(jQuery.easing, {
    easeInOutExpo: function (x, t, b, c, d) {
        if (t == 0) return b;
        if (t == d) return b + c;
        if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;
        return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b;
    }
});
jQuery(
 
function () {
    jQuery("div.csw").prepend("<p class='loading'>Загрузка данных…...<br /></p>");
});
var j = 0;
jQuery.fn.codaSlider = function (settings) {
    settings = jQuery.extend({
        easeFunc: "easeInOutExpo",
        easeTime: 750,
        toolTip: false
    }, settings);
    return this.each(function () {
        var container = jQuery(this);
        container.find("p.loading").remove();
        container.removeClass("csw").addClass("stripViewer");
        var panelWidth = container.find("div.panel").width();
        var panelCount = container.find("div.panel").size();
        var stripViewerWidth = panelWidth * panelCount;
        container.find("div.panelContainer").css("width", stripViewerWidth);
        var navWidth = panelCount * 2;
        if (location.hash && parseInt(location.hash.slice(1)) <= panelCount) {
            var cPanel = parseInt(location.hash.slice(1));
            var cnt = -(panelWidth * (cPanel - 1));
            jQuery(this).find("div.panelContainer").css({
                left: cnt
            });
        } else {
            var cPanel = 1;
        };
        container.each(function (i) {
            jQuery(this).after("<div class='stripNavL' id='stripNavL" + j + "'><a href='#'><< предыдущий |</a><\/div>");
            jQuery(this).after("<div class='stripNavR' id='stripNavR" + j + "'><a href='#'>следующий заголовок >></a><\/div>");
            jQuery("div#stripNavL" + j + " a").click(function () {
                if (cPanel == 1) {
                    var cnt = -(panelWidth * (panelCount - 1));
                    cPanel = panelCount;
                    jQuery(this).parent().parent().find("div.stripNav a.current").removeClass("current").parent().parent().find("li:last a").addClass("current");
                } else {
                    cPanel -= 1;
                    var cnt = -(panelWidth * (cPanel - 1));
                    jQuery(this).parent().parent().find("div.stripNav a.current").removeClass("current").parent().prev().find("a").addClass("current");
                };
                jQuery(this).parent().parent().find("div.panelContainer").animate({
                    left: cnt
                }, settings.easeTime, settings.easeFunc);
                location.hash = cPanel;
                return false;
            });
            jQuery("div#stripNavR" + j + " a").click(function () {
                if (cPanel == panelCount) {
                    var cnt = 0;
                    cPanel = 1;
                    jQuery(this).parent().parent().find("div.stripNav a.current").removeClass("current").parent().parent().find("a:eq(0)").addClass("current");
                } else {
                    var cnt = -(panelWidth * cPanel);
                    cPanel += 1;
                    jQuery(this).parent().parent().find("div.stripNav a.current").removeClass("current").parent().next().find("a").addClass("current");
                };
                jQuery(this).parent().parent().find("div.panelContainer").animate({
                    left: cnt
                }, settings.easeTime, settings.easeFunc);
                location.hash = cPanel;
                return false;
            });
            jQuery("a.cross-link").click(function () {
                jQuery(this).parents().find(".stripNav ul li a:eq(" + (parseInt(jQuery(this).attr("href").slice(1)) - 1) + ")").trigger('click');
            });
            jQuery("div#stripNav" + j).css("width", navWidth);
            if (location.hash && parseInt(location.hash.slice(1)) <= panelCount) {
                jQuery("div#stripNav" + j + " a:eq(" + (location.hash.slice(1) - 1) + ")").addClass("current");
            } else {
                jQuery("div#stripNav" + j + " a:eq(0)").addClass("current");
            }
        });
        j++;
    });
};
(
 
function ($) {
    $.jtabber = function (params) {
        var navDiv = params.mainLinkTag;
        var selectedClass = params.activeLinkClass;
        var hiddenContentDiv = params.hiddenContentClass;
        var showDefaultTab = params.showDefaultTab;
        var showErrors = params.showErrors;
        var effect = params.effect;
        var effectSpeed = params.effectSpeed;
        if (showErrors) {
            if (!$(navDiv).attr('title')) {
                alert("ERROR: The elements in your mainLinkTag paramater need a 'title' attribute.\n (" + navDiv + ")");
                return false;
            } else if (!$("." + hiddenContentDiv).attr('id')) {
                alert("ERROR: The elements in your hiddenContentClass paramater need to have an id.\n (." + hiddenContentDiv + ")");
                return false;
            }
        }
        if (!isNaN(showDefaultTab)) {
            showDefaultTab--;
            $("." + hiddenContentDiv + ":eq(" + showDefaultTab + ")").css('display', 'block');
            $(navDiv + ":eq(" + showDefaultTab + ")").addClass(selectedClass);
        }
        $(navDiv).each(function () {
            $(this).click(function () {
                $(navDiv).each(function () {
                    $(this).removeClass();
                });
                $("." + hiddenContentDiv).css('display', 'none');
                $(this).addClass(selectedClass);
                var contentDivId = $(this).attr('title');
                if (effect != null) {
                    switch (effect) {
                    case 'slide':
                        $("#" + contentDivId).slideDown(effectSpeed);
                        break;
                    case 'fade':
                        $("#" + contentDivId).fadeIn(effectSpeed);
                        break;
                    }
                } else {
                    $("#" + contentDivId).css('display', 'block');
                }
                return false;
            })
        })
    }
})(jQuery);
(
 
function ($) {
    function runTicker(settings) {
        if (settings.firstRun == 1) {
            currentLength = settings.currentLength;
            currentItem = settings.currentItem;
            settings.firstRun = 0;
        }
        if (currentItem == settings.newsItemCounter + 1) {
            currentItem = 0;
        }
        if (currentLength == 0) {
            $(settings.newsList).empty().append('<li><a href="' + settings.newsLinks[currentItem] + '"></a></li>');
        }
        if (currentLength % 2 == 0) {
            placeHolder = settings.placeHolder1;
        } else {
            placeHolder = settings.placeHolder2;
        }
        if (currentLength <= settings.newsItems[currentItem].length + 1) {
            var tickerText = settings.newsItems[currentItem].substring(0, currentLength);
            $(settings.newsList + ' li a').text(tickerText + placeHolder);
            currentLength++;
            setTimeout(function () {
                runTicker(settings);
                settings = null;
            }, settings.tickerRate);
        } else {
            $(settings.newsList + ' li a').text(settings.newsItems[currentItem]);
            currentLength = 0;
            currentItem++;
            setTimeout(function () {
                runTicker(settings);
                settings = null;
            }, settings.loopDelay);
        }
    }
    $.fn.extend({
        newsTicker: function (settings) {
            settings = jQuery.extend({
                newsList: "#ticker",
                tickerRate: 80,
                startDelay: 100,
                loopDelay: 3000,
                placeHolder1: " |",
                placeHolder2: "_"
            }, settings);
            var newsItems = new Array();
            var newsLinks = new Array();
            var newsItemCounter = 0;
            $(settings.newsList + ' li a').each(function () {
                newsItems[newsItemCounter] = $(this).text();
                newsLinks[newsItemCounter] = $(this).attr('href');
                newsItemCounter++;
            });
            settings = jQuery.extend(settings, {
                newsItems: newsItems,
                newsLinks: newsLinks,
                newsItemCounter: newsItemCounter - 1,
                currentItem: 0,
                currentLength: 0,
                firstRun: 1
            });
            setTimeout(function () {
                runTicker(settings);
                settings = null;
            }, settings.startDelay);
        }
    });
})(jQuery);

Скачать


Категории: JavaScript
Яндекс.Метрика