1

jQueryのオリジナルを使用してスクリプトを作成しました:http://terkel.jp/demo/jquery-floating-widget-plugin.html

しかし、プロトタイプJSに入力すると、正しく機能しません。上下の高さは厳密にはカウントされません。

何かご意見は?コードとリンクを添付して、アクティブなスクリプトを表示しました。

オンラインの問題: http: //1.delnik20.cz/

プロトタイプ:

document.observe('dom:loaded', function() {
    Element.addMethods({
        floatingWidget: function(el, classes) {
            var $this       = $(el),
            $parent         = $this.getOffsetParent(),
            $window         = $(window),
            top             = $this.positionedOffset().top - parseFloat($this.getStyle('marginTop').replace(/auto/, 0)),
            bottom          = $parent.positionedOffset().top + $parent.getHeight() - $this.getHeight();

            if ($parent.getHeight() > $this.getHeight()) {
                Event.observe($window, 'scroll', function (e) {
                    var y = document.viewport.getScrollOffsets().top;
                    if (y > top) {
                        $this.addClassName(classes.floatingClass);
                        if (y > bottom) {
                            $this.removeClassName(classes.floatingClass).addClassName(classes.pinnedBottomClass);
                        } else {
                            $this.removeClassName(classes.pinnedBottomClass);
                        }
                    } else {
                        $this.removeClassName(classes.floatingClass);
                    }
                });
            }
            return el;
        }
    });

    $('floating-widget').floatingWidget({
        floatingClass: 'floating',
        pinnedBottomClass: 'pinned-bottom'
    });
});
4

1 に答える 1

1

Prototypejs は jQuery のoffset()iscumulativeOffset()に相当し、outerHeight()isに相当しますmeasure('margin-box-height')(これは Element.Layout オブジェクトを使用して最適化できます)。したがって、コードは次のようになります。

floatingWidget: function(el, classes) {
    var $this        = $(el),
        $parent      = $this.getOffsetParent(),
        $window      = $(window),
        top          = $this.cumulativeOffset().top - $this.measure('margin-top'),
        bottom       = $parent.cumulativeOffset().top + $parent.getHeight() - $this.measure('margin-box-height');

if ($parent.getHeight() > $this.measure('margin-box-height')) {
...
于 2012-08-30T07:29:55.330 に答える