【IBH韓國首爾頒授及國際大賽2024 - 5月17-18日】

Posted by website_admin 2024/03/18 0 Comment(s) 媒體中心,
【IBH韓國首爾頒授及國際大賽2024 - 5月17-18日】
一年一度韓國IBH總會國際委員長,資深名譽會長及名譽會長及項目主席委任儀式及頒授典禮、將於5月17、18日在韓國首爾舉行,屆時可以與亞洲各地區的分會代表及韓國總會理事成員認識,一齊互動,交流切磋,創造商機;

        
            </div>

    
        </div>
<script>
    (function () {
        var grid = $.parseJSON('[[0,1],[470,2],[760,2],[980,3],[1100,4]]');

        var breakpoints = {
            470: {
                slidesPerView: grid[0][1],
                slidesPerGroup: grid[0][1]
            },
            760: {
                slidesPerView: grid[1][1],
                slidesPerGroup: grid[1][1]
            },
            980: {
                slidesPerView: grid[2][1],
                slidesPerGroup: grid[2][1]
            },
            1220: {
                slidesPerView: grid[3][1],
                slidesPerGroup: grid[3][1]
            }
        };

        var opts = {
            slidesPerView: grid[4][1],
            slidesPerGroup: grid[4][1],
            breakpoints: breakpoints,
            spaceBetween: parseInt('15', 10),
            pagination: $('.related-products .swiper-pagination'),
            paginationClickable: true,
            nextButton: $('.related-products .swiper-button-next'),
            prevButton: $('.related-products .swiper-button-prev'),
            autoplay: 4000,
            autoplayStopOnHover: true,
            speed: 400,
            touchEventsTarget: false,
        };

        $('.related-products .swiper-container').swiper(opts);
    })();
</script>
<script>
    function generateComment($form, cls, $appendTo, callback) {
        $form.find('.has-error').removeClass('has-error');
        $.post('index.php?route=journal2/blog/comment&post_id=394', $form.serializeArray(), function (response) {
            if (response.status === 'success') {

                if (response.data) {
                    var html = '';
                    html += '<div class='; html += response.data.avatar; html += '
'; html += '
' + response.data.name + ':
'; html += '
' + response.data.date + ', ' + response.data.time + ''; if (response.data.website) { html += ', ' + response.data.website + ''; } html += '
'; html += 'Reply'; html += '

' + response.data.comment + '

'; html += '
'; $appendTo.before(html); } callback && callback(response.message); } if (response.status === 'error') { $.each(response.errors, function (i, field) { $form.find('[name="' + field + '"]').addClass('has-error'); }); } }, 'json'); } $('.reply-btn').live('click', function () { var $comment = $(this).closest('.comment'); if ($comment.attr('data-has-form') === 'false') { var $form = $('.post-comment form').clone(); $form.find('.has-error').removeClass('has-error'); $form.append(''); $form.find('a').removeClass('comment-submit').addClass('reply-submit'); $comment.append('

Leave a Reply

' + $form.html() + '
'); $comment.attr('data-has-form', 'true'); } else { $comment.find('.reply-form').remove(); $comment.attr('data-has-form', 'false'); } }); $('form .comment-submit').live('click', function () { var $form = $(this).closest('form'); var $comment_form = $('.post-comment'); generateComment($form, 'comment', $comment_form, function (message) { $comment_form.before('
' + message + '
'); setTimeout(function () { $('.comments .success').fadeOut(400); }, 2000); $form[0].reset(); }); }); $('form .reply-submit').live('click', function () { var $form = $(this).closest('form'); var $reply_form = $(this).closest('.comment').find('.reply-form'); generateComment($form, 'reply', $reply_form, function (message) { $reply_form.before('
' + message + '
'); setTimeout(function () { $('.comments .success').fadeOut(400); }, 2000); $form.closest('.comment').attr('data-has-form', 'false'); $reply_form.remove(); }); });