


{"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":"\u7af9\u5f71\u9285\u5149 - \u98c4\u96c5\u6d3b\u85dd","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"hZ718T1uY3\"><a href=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e7%ab%b9%e5%bd%b1%e9%8a%85%e5%85%89\/\">\u7af9\u5f71\u9285\u5149<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e7%ab%b9%e5%bd%b1%e9%8a%85%e5%85%89\/embed\/#?secret=hZ718T1uY3\" width=\"600\" height=\"338\" title=\"&#8220;\u7af9\u5f71\u9285\u5149&#8221; &#8212; \u98c4\u96c5\u6d3b\u85dd\" data-secret=\"hZ718T1uY3\" 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\/20241129_COP_day2_25216-scaled.jpg","thumbnail_width":2560,"thumbnail_height":1707,"description":"\u95dc\u65bc\u4f5c\u54c1  \u300a\u7af9\u5f71\u9285\u5149\u300b\u662f\u4e00\u500b\u96d5\u5851\u88dd\u7f6e\uff0c\u5de7\u5999\u878d\u5408\u50b3\u7d71\u8207\u5275\u65b0\uff0c\u4e26\u5448\u73fe\u6e2f\u65e5\u6587\u5316\u7684\u4ea4\u878d\u3002\u5289\u5b9b\u99a8\u8207\u85e4\u4e95\u5065\u4ee5\u9999\u6e2f\u7af9\u68da\u70ba\u9748\u611f\uff0c\u4e26\u69cb\u601d\u5982\u4f55\u4ee5\u73fe\u4ee3\u624b\u6cd5\u91cd\u65b0\u6f14\u7e79\u9019\u7a2e\u7368\u7279\u7684\u50b3\u7d71\u5efa\u7bc9\u8a2d\u8a08\uff0c\u904b\u7528\u9ec3\u9285\u7ba1\u91cd\u5851\u300c\u7af9\u7aff\u300d\u7d50\u69cb\uff0c\u4e26\u4ee5\u56db\u5341\u4e8c\u4ef6\u7cbe\u7dfb\u96d5\u523b\u548c\u8c61\u5fb5\u5169\u5730\u81ea\u7136\u5143\u7d20\u7684\u9285\u88fd\u8c46\u76bf\u9ede\u7db4\uff0c\u4ee5\u6b64\u7d00\u5ff5\u70ba\u671f\u56db\u5341\u4e8c\u5929\u7684\u5de5\u85dd\u4ea4\u6d41\u3002     \u50b3\u7d71\u5de5\u85dd\u7684\u6545\u4e8b  \uff5c\u9999\u6e2f\u7af9\u68da\u67b6\u7684\u5de5\u85dd\u7cbe\u9ad3\uff5c  \u7af9\u68da\u67b6\u63d0\u4f9b\u4e00\u500b\u5b89\u5168\u7684\u65b9\u5f0f\u9032\u884c\u6a13\u5b87\u7dad\u4fee\u53ca\u4fdd\u990a\uff0c\u9019\u500b\u9999\u6e2f\u7368\u6709\u7684\u5efa\u7bc9\u8a2d\u8a08\u53ea\u5229\u7528\u4e86\u7e69\u7d50\u5c07\u7af9\u687f\u7d81\u5728\u4e00\u8d77\u3002\u7af9\u68da\u67b6\u6e90\u9060\u6d41\u9577\u7684\u6b77\u53f2\u53ef\u4ee5\u8ffd\u6eaf\u5230\u4e94\u3001\u516d\u5341\u5e74\u4ee3\uff0c\u96a8\u7740\u7d93\u6fdf\u8d77\u98db\u548c\u57ce\u5e02\u898f\u5283\u589e\u52a0\uff0c\u7af9\u68da\u67b6\u96a8\u8655\u53ef\u898b\u3002\u7531\u65bc\u7af9\u8cc7\u6e90\u8c50\u5bcc\uff0c\u5b83\u6210\u70ba\u4e00\u500b\u9ad8\u6548\u7387\u53c8\u4f4e\u6210\u672c\u7684\u65b9\u6848\u53bb\u61c9\u4ed8\u65e5\u76ca\u589e\u9577\u7684\u5efa\u7bc9\u9700\u6c42\uff0c\u7af9\u5929\u7136\u7684\u7279\u8cea\u4f8b\u5982\u5176\u97cc\u6027\u548c\u8edf\u5ea6\uff0c\u4ea6\u4ee4\u5b83\u6210\u70ba\u5c24\u5176\u53ef\u53d6\u7684\u5efa\u7bc9\u6750\u6599\u3002  \u96a8\u7740\u516b\u5341\u5e74\u4ee3\u79d1\u6280\u9032\u6b65\u4ee5\u53ca\u5b89\u5168\u689d\u4f8b\u9010\u6f38\u5b8c\u5584\uff0c\u7af9\u5b50\u88ab\u63d0\u5021\u7528\u91d1\u5c6c\u53d6\u4ee3\u4ee5\u88fd\u68da\u67b6\u3002\u5118\u7ba1\u9999\u6e2f\u6162\u6162\u6b65\u5165\u5de5\u696d\u5316\u548c\u73fe\u4ee3\u5316\u7684\u793e\u6703\uff0c\u7af9\u68da\u67b6\u6c92\u6709\u96a8\u6642\u9593\u6f14\u8b8a\u800c\u672b\u843d\uff0c\u4ecd\u4e0d\u53ef\u53d6\u4ee3\u3002\u8eab\u70ba\u4e00\u7a2e\u7cc5\u5408\u7f8e\u5b78\u548c\u529f\u80fd\u6027\u7684\u5efa\u7bc9\u8a2d\u8a08\uff0c\u5efa\u9020\u7af9\u68da\u67b6\u8207\u5176\u4ed6\u5de5\u85dd\u76f8\u4f3c\uff0c\u90fd\u9700\u8981\u4e00\u5957\u7279\u5b9a\u7684\u5c08\u696d\u6280\u5de7\u3002     \u88fd\u4f5c\u5de5\u5e8f  \u53d7\u7af9\u68da\u67b6\u555f\u767c\u800c\u6210\u7684\u96d5\u5851\u88dd\u7f6e\u9700\u8981\u904b\u7528\u6bd4\u4e0a\u8ff0\u66f4\u6210\u719f\u7684\u91d1\u5de5\u6280\u5de7\uff1a\u4ed6\u5011\u9996\u5148\u5c07\u9285\u7ba1\u5206\u5272\u6210\u7d30\u5c0f\u7684\u7b49\u584a\uff0c\u7136\u5f8c\u900f\u904e\u6572\u6253\u6bcf\u689d\u9285\u7ba1\u7684\u672b\u7aef\uff0c\u4f7f\u5176\u9677\u5165\uff0c\u518d\u7528\u932b\u689d\u5c07\u4ed6\u5011\u91cd\u65b0\u9023\u63a5\uff0c\u7136\u5f8c\u7528\u7368\u9580\u914d\u65b9\u67d3\u8272\u3002  \u9019\u4e9b\u6b65\u9a5f\u4f7f\u5176\u5916\u8c8c\u8207\u7af9\u7aff\u76f8\u4f3c\uff0c\u5c07\u666e\u901a\u7684\u9285\u7ba1\u7531\u53ea\u4f5c\u652f\u6490\u7684\u7269\u6599\u8f49\u5316\u70ba\u85dd\u8853\u5143\u7d20\uff0c\u6700\u5f8c\uff0c\u4ed6\u5011\u639b\u4e0a\u7528\u9318\u548c\u947f\u5b50\u4eba\u624b\u96d5\u523b\u4e86\u5404\u7a2e\u5927\u81ea\u7136\u5143\u7d20\u4f8b\u5982\u5c71\u3001\u6c34\u548c\u82b1\u6735\u7684\u9285\u88fd\u8c46\u76bf\uff0c\u900f\u904e\u8207\u5149\u7684\u4e92\u52d5\u548c\u6298\u5c04\uff0c\u70ba\u9019\u500b\u96d5\u5851\u88dd\u7f6e\u756b\u9f8d\u9ede\u775b\u3002"}