<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function () {
    setTimeout(function () {
        swiper_check();
    }, 1);

    $(window).resize(function () {
        swiper_check();
    });
});

function swiper_check() {
    // å¦‚æžœå…©å€‹ç®­é&nbsp;­éƒ½disabled =&gt;éš±è—
    $(".swiper").map(function () {
        var n = $(this).parent().find(".swiper-button-disabled").length;
        if (n == 2) {
            // $(this).parent().find(".swiper-button-disabled").css("opacity", 0);
            $(this).parent().find(".swiper-btn-block").hide();
        } else {
            if($(this).parent().find(".swiper-btn-block").hasClass('space-between-btn')){
                $(this).parent().find(".swiper-btn-block").css("display","flex")
            }else{

                $(this).parent().find(".swiper-btn-block").show();
            }
        }
    });
}
</pre></body></html>