1

この単純なコードがあり、画像の最小幅と最小高さを設定したいので、最小に設定します。高さと最小。幅、これらの制限になると、タグは思い通りにオフになりますが、画像をクリックするとタグが別の場所に表示され、写真を拡大できません..

if (width && height) {
    if (MIN_WIDTH < width || MIN_HEIGHT < height) {
        image.setSize(width, height);
    } else {
        group.children[1].hide();
        group.children[2].hide();
        group.children[3].hide();
        group.children[4].hide();
        $(".toSmall").dialog({
            modal: true,
            width: 350,
            height: 180,
            buttons: {
                "OK": function() {
                    $(this).dialog("close");
                    image.setSize(image.width, image.height);
                    console.log(activeAnchor.attrs.draggable = false);
                    activeAnchor.attrs.x *= 2;
                    activeAnchor.attrs.y *= 2;
                    image.off('click');
                    // activeAnchor.setDragOnTop(false);
                    // activeStage.draw();
                }
            }
        });
    }
}
4

1 に答える 1