OP、
jQuery 圧縮 ~ 94 KB。Zepto圧縮 ~ 9.7 KB。
つまり、代わりに Zepto を含め、プラグインの最後の行にある jQuery への参照を Zepto に変更すると、そのまま動作します。このフィドルを参照してください
(function ($) {
$.fn.fitText = function (kompressor, options) {
// Setup options
var compressor = kompressor || 1,
settings = $.extend({
'minFontSize': Number.NEGATIVE_INFINITY,
'maxFontSize': Number.POSITIVE_INFINITY
}, options);
return this.each(function () {
// Store the object
var $this = $(this);
// Resizer() resizes items based on the object width divided by the compressor * 10
var resizer = function () {
$this.css('font-size', Math.max(Math.min($this.width() / (compressor * 10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
};
// Call once to set.
resizer();
// Call on resize. Opera debounces their resize by default.
$(window).on('resize', resizer);
});
};
})(Zepto);
ドキュメントによると:
Zepto は、主に jQuery と互換性のある API を備えた最新のブラウザー向けの最小限の JavaScript ライブラリです。
したがって、jQuery ライブラリ全体を含めることなく jQuery プラグイン* を使用したい人の場合、Zepto は妥当な回避策のように思えます。
* jQuery を 100% カバーすることは設計目標ではありませんが、提供される API は対応する jQuery と一致します。
それが役立つことを願っています。