


{"version":"1.0","provider_name":"\u98c4\u96c5\u6d3b\u85dd","provider_url":"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/","author_name":"Crafts on Peel Staff","author_url":"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/author\/craftsonpeel_admin\/","title":"\u8317\u9999\u5561\u97fb - \u98c4\u96c5\u6d3b\u85dd","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"Nyv6FM3kkM\"><a href=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e8%8c%97%e9%a6%99%e5%95%a1%e9%9f%bb\/\">\u8317\u9999\u5561\u97fb<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e8%8c%97%e9%a6%99%e5%95%a1%e9%9f%bb\/embed\/#?secret=Nyv6FM3kkM\" width=\"600\" height=\"338\" title=\"&#8220;\u8317\u9999\u5561\u97fb&#8221; &#8212; \u98c4\u96c5\u6d3b\u85dd\" data-secret=\"Nyv6FM3kkM\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/wp-content\/uploads\/2024\/12\/20241128_COP_day1_24733-copy-1-scaled.jpg","thumbnail_width":2560,"thumbnail_height":1707,"description":"\u95dc\u65bc\u4f5c\u54c1  \u300a\u8317\u9999\u5561\u97fb\u300b\u5de7\u5999\u5730\u5c07\u4e00\u7d44\u98f2\u5177\u4ea4\u878d\u5448\u73fe\uff0c\u5de5\u85dd\u5e2b\u5011\u5f7c\u6b64\u4ea4\u6d41\u9285\u5668\u6280\u85dd\uff0c\u4e26\u8f2a\u6d41\u53c3\u8207\u5275\u4f5c\u7684\u4e0d\u540c\u968e\u6bb5\u3002\u4f5c\u54c1\u662f\u627f\u8f09\u5169\u4f4d\u5de5\u85dd\u5e2b\u6587\u5316\u80cc\u666f\u7684\u8f09\u9ad4\uff0c\u8336\u58fa\u5f70\u986f\u9999\u6e2f\u8336\u6587\u5316\u7684\u6b77\u53f2\u5e95\u860a\uff0c\u5496\u5561\u6ef4\u6ffe\u58fa\u5247\u50b3\u9054\u65e5\u672c\u5496\u5561\u6587\u5316\u7684\u91cd\u8981\u6027\u3002     \u50b3\u7d71\u5de5\u85dd\u7684\u6545\u4e8b  \uff5c\u71d5\u9318\u8d77\u5de5\u85dd\uff5c  \u9285\u9b42\u8e8d\u52d5\uff0c\u9318\u8072\u541f\u8a60\uff0c\u6210\u5c31\u7d55\u4e16\u73cd\u54c1\uff0c\u4e00\u5668\u4e00\u6545\u4e8b\uff0c\u5343\u9318\u767e\u7149\u60c5\u3002  \u71d5\u9318\u8d77\u5de5\u85dd\u4ee5\u939a\u5b50 (tsui) \u6572\u6253 (ki) \u9285\u7247\uff0c\u5851\u9020\u51fa\u7acb\u9ad4\u5668\u76bf\u3002\u9285\u7247\u7d93\u9000\u706b\u5f8c\uff0c\u904b\u7528\u5404\u7a2e\u9318\u5b50\uff0c\u6572\u6253\u51fa\u88dd\u98fe\u5716\u6848\uff0c\u4e26\u5c07\u91d1\u5c6c\u5851\u9020\u6210\u4e0d\u540c\u7684\u5c3a\u5bf8\u3002\u9318\u8d77\u5145\u5206\u5229\u7528\u9285\u4f38\u5c55\u6027\u5f37\u7684\u7279\u9ede\uff0c\u88fd\u4f5c\u51fa\u7cbe\u7f8e\u7684\u8336\u58fa\u3001\u8336\u8449\u7f50\u3001\u5496\u5561\u58fa\u3001\u9285\u7172\u548c\u6e05\u9152\u676f\u7b49\u5668\u76bf\u3002\u9019\u9805\u50b3\u7d71\u91d1\u5de5\u6280\u6cd5\u5728\u65e5\u672c\u65b0\u6f5f\u7e23\u71d5\u5e02\u5df2\u6709\u8d85\u904e\u4e8c\u767e\u5e74\u7684\u6b77\u53f2\u3002  \u5320\u5fc3\u7368\u904b\uff0c\u9285\u6750\u4f4e\u8a9e\u3002\u71d5\u9318\u8d77\u7684\u6bcf\u4e00\u6b21\u9318\u64ca\uff0c\u7686\u662f\u7cbe\u6e96\u7684\u8a6e\u91cb\uff0c\u8b5c\u5beb\u51fa\u7531\u66f2\u7dda\u3001\u7d0b\u7406\u8207\u5149\u5f71\u4ea4\u7e54\u800c\u6210\u7684\u7cbe\u5999\u7bc7\u7ae0\u3002\u770b\u4f3c\u7c21\u7d04\u7684\u52d5\u4f5c\uff0c\u5be6\u5247\u860a\u542b\u8457\u7cbe\u6e5b\u6280\u85dd\u8207\u9748\u611f\u7684\u7cbe\u5999\u5e73\u8861\uff0c\u4ee5\u5afb\u719f\u7684\u6280\u6cd5\uff0c\u5de5\u85dd\u5e2b\u5c07\u53ef\u5851\u7684\u9285\u6750\u5e7b\u5316\u6210\u4ee4\u4eba\u9a5a\u5606\u7684\u5de5\u85dd\u54c1\u3002\u6bcf\u4e00\u4ef6\u4f5c\u54c1\u7686\u70ba\u7368\u4e00\u7121\u4e8c\u7684\u5091\u4f5c\uff0c\u662f\u9318\u8d77\u5de5\u85dd\u7cbe\u6e5b\u624b\u5de5\u7684\u6700\u4f73\u9ad4\u73fe\u3002     \u88fd\u4f5c\u5de5\u5e8f  \u5289\u5b9b\u99a8\u548c\u85e4\u4e95\u5065\u904b\u7528\u591a\u7a2e\u7cbe\u6e5b\u7684\u91d1\u5de5\u6280\u8853\uff0c\u5305\u62ec\u9318\u8d77\u3001\u6574\u5e73\u3001\u710a\u63a5\u548c\u9000\u706b\uff0c\u5de7\u5999\u5730\u5c07\u91d1\u5c6c\u6750\u8cea\u5e7b\u5316\u70ba\u517c\u5177\u529f\u80fd\u6027\u8207\u85dd\u8853\u6027\u7684\u5668\u76bf\u3002\u6bcf\u9053\u5de5\u5e8f\u7686\u6709\u5176\u7368\u5230\u4e4b\u8655\uff0c\u76f8\u8f14\u76f8\u6210\uff0c\u6210\u5c31\u975e\u51e1\u4e4b\u4f5c\u3002"}