0
jqueryプラグインを2つ書き込んで表示すると、プラグインにUI値を渡す方法と使用方法がわかりませんでした。topIn()
プラグインの中で。設定できないCustom jQuery Pluginの機能を使用する方法
基本的には、このプラグインは、あなたが$.fn.boxInView
内topIn
関数を呼び出すことはありませんクライアント側
(function($) {
$.fn.boxInView = function(options) {
var settings = {
boxTopIn: null
};
var options = $.extend(settings, options);
function topIn(elem) {
$(window).scroll(function() {
var screenBot = $(window).height();
if (($(window).scrollTop() + screenBot) > elemTop) {
if ($.isFunction(options.onComplete)) {
options.onComplete.call();
}
options.boxTopIn.call();
}
});
}
};
})(jQuery);
$('#c').boxInView({
boxTopIn: function() {
console.log('Box in View');
}
});