


{"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":"\u5f35\u701a\u8b19 - \u98c4\u96c5\u6d3b\u85dd","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"pR1PIy8hJO\"><a href=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/crafts-men\/%e5%bc%b5%e7%80%9a%e8%ac%99-2\/\">\u5f35\u701a\u8b19<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/crafts-men\/%e5%bc%b5%e7%80%9a%e8%ac%99-2\/embed\/#?secret=pR1PIy8hJO\" width=\"600\" height=\"338\" title=\"&#8220;\u5f35\u701a\u8b19&#8221; &#8212; \u98c4\u96c5\u6d3b\u85dd\" data-secret=\"pR1PIy8hJO\" 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\/2025\/12\/Chris-Cheung-scaled.jpg","thumbnail_width":2560,"thumbnail_height":2560,"description":"\u5f35\u701a\u8b19 (h0nh1m) \u662f\u4ee5\u5a92\u9ad4\u85dd\u8853\u88dd\u7f6e\u548c\u524d\u885b\u96fb\u5b50\u8996\u807d\u8868\u6f14\u805e\u540d\u7684\u9999\u6e2f\u591a\u5a92\u9ad4\u85dd\u8853\u5bb6\u3002\u5176\u7368\u7279\u7684\u5275\u4f5c\u98a8\u683c\u8207\u7f8e\u5b78\u89c0\uff0c\u7cc5\u5408\u50b3\u7d71\u8207\u672a\u4f86\u6982\u5ff5\uff0c\u4ee5\u5275\u65b0\u624b\u6cd5\u91cd\u65b0\u8a6e\u91cb\u6771\u897f\u65b9\u54f2\u5b78\u3002\u4ed6\u65bc\u4e8c\u96f6\u96f6\u516b\u5e74\u6210\u7acb\u5a92\u9ad4\u85dd\u8853\u5718\u968a XCEPT \u548c XCEED\uff0c\u5176\u5f8c\u5efa\u7acb XPLOR \u5be6\u9a57\u5ba4\u548c FutureTense \u5e73\u53f0\uff0c\u81f4\u529b\u63a8\u52d5\u53ef\u6301\u7e8c\u767c\u5c55\u7684\u751f\u6d3b\u7f8e\u5b78\u548c\u5a92\u9ad4\u85dd\u8853\u767c\u5c55\u3002\u8fd1\u5e74\u4ee3\u8868\u4f5c\u5305\u62ec\u53d7M+\u535a\u7269\u9928\u59d4\u7d04\u5275\u4f5c\u3001\u8207\u66f8\u6cd5\u5927\u5e2b\u8463\u967d\u5b5c\u5408\u4f5c\u7684\u300a\u58a8\u30fb\u8108\u300b\uff0c\u4ee5\u53ca\u53d7\u9999\u6e2f\u6545\u5bae\u6587\u5316\u535a\u7269\u9928\u59d4\u7d04\u4e4b\u300a\u6d6a\u66f8\u300b\u3002\u4e8c\u96f6\u4e8c\u56db\u5e74\u7372\u9999\u6e2f\u85dd\u8853\u9928\u6307\u5b9a\u5275\u4f5c\u300a\u7011\u6797\u300b\uff0c\u4e26\u8207\u9999\u6e2f\u821e\u8e48\u5718\u8de8\u754c\u5408\u4f5c\u300a\u5feb\u96ea\u6642\u6674\u300b\u3002\u540c\u5e74\u53d7\u592a\u5e73\u5730\u6bef\u59d4\u7d04\uff0c\u70ba\u9999\u6e2f\u534a\u5cf6\u9152\u5e97\u85dd\u8853\u8ff4\u97ff\u8a08\u5283\u6253\u9020\u85dd\u8853\u88dd\u7f6e\u300a\u8b58\u5fc3\u4ead\u300b\u3002\u4e8c\u96f6\u4e8c\u4e94\u5e74\u4ed6\u65bc\u300c\u8d8a\u5f8c\u59bb\u6709\u5927\u5730\u85dd\u8853\u796d\u300d\u4e2d\uff0c\u8207\u6c34\u58a8\u85dd\u8853\u5bb6\u6c88\u541b\u6021\u651c\u624b\uff0c\u65bc\u65e5\u672c\u6d25\u5357\u753a\u7684\u9999\u6e2f\u90e8\u5c4b\u5448\u73fe\u300a\u77f3\u4e4b\u8033\u8a9e\u300b\u3002\u540c\u5e74\uff0c\u69ae\u7372\u7b2c\u5341\u4e5d\u5c46\u9999\u6e2f\u85dd\u8853\u767c\u5c55\u734e\u5e74\u5ea6\u85dd\u8853\u5bb6\u734e\uff08\u5a92\u9ad4\u85dd\u8853\uff09\u3002"}