


{"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":"\u6b72\u6708\u8f2a\u8ff4 - \u98c4\u96c5\u6d3b\u85dd","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"o3CByYYyCq\"><a href=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e6%ad%b2%e6%9c%88%e8%bc%aa%e8%bf%b4\/\">\u6b72\u6708\u8f2a\u8ff4<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e6%ad%b2%e6%9c%88%e8%bc%aa%e8%bf%b4\/embed\/#?secret=o3CByYYyCq\" width=\"600\" height=\"338\" title=\"&#8220;\u6b72\u6708\u8f2a\u8ff4&#8221; &#8212; \u98c4\u96c5\u6d3b\u85dd\" data-secret=\"o3CByYYyCq\" 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\/01\/Screenshot-2025-01-09-at-15.57.00.png","thumbnail_width":1184,"thumbnail_height":766,"description":"\u95dc\u65bc\u4f5c\u54c1  \u9019\u56db\u4ef6\u53d7\u5dba\u5357\u76c6\u666f\u555f\u767c\u7684\u4f5c\u54c1\u9ad4\u73fe\u4e86\u5982\u4f55\u4ee5\u7576\u4ee3\u8996\u89d2\u91cd\u65b0\u8a6e\u91cb\u50b3\u7d71\u5de5\u85dd\u3002\u9ec3\u9326\u654f\u4ee5\u7236\u89aa\u9ec3\u5e2b\u5085\u7684\u76c6\u666f\u4e2d\u7684\u67af\u679d\u673d\u6728\u70ba\u6750\uff0c\u4e26\u7528\u85dd\u8853\u624b\u6cd5\u5c07\u5b83\u5011\u91cd\u65b0\u6f14\u7e79\uff0c\u8b93\u67af\u840e\u690d\u7269\u7684\u751f\u547d\u5f97\u4ee5\u5ef6\u7e8c\uff0c\u62c9\u8fd1\u5de5\u85dd\u8207\u85dd\u8853\u7684\u8ddd\u96e2\u3002\u9019\u4e00\u7cfb\u5217\u7684\u4f5c\u54c1\u9ad4\u73fe\u4e86\u5de5\u85dd\u5e2b\u5011\u81f4\u529b\u65bc\u878d\u5408\u50b3\u7d71\u5de5\u85dd\u548c\u7576\u4ee3\u8a2d\u8a08\u7684\u7cbe\u795e\uff0c\u4ee5\u53ca\u4ed6\u5011\u5728\u88fd\u4f5c\u9ad8\u5ea6\u7cbe\u7d30\u7684\u5fae\u578b\u666f\u89c0\u4e0a\u6240\u4ed8\u51fa\u7684\u4e0d\u61c8\u52aa\u529b\uff0c\u4ee5\u6b64\u5f70\u986f\u9999\u6e2f\u5805\u6bc5\u4e0d\u5c48\u7684\u7cbe\u795e\u3002  \u9019\u7d44\u5f15\u4eba\u5165\u52dd\u7684\u76c6\u666f\u96d5\u5851\u4e92\u76f8\u547c\u61c9\uff0c\u4e26\u63a2\u8a0e\u5ff5\u820a\u4e4b\u60c5\u3002\u4ed6\u5011\u627f\u8f09\u4e86\u9ec3\u9326\u654f\u5c0d\u56de\u61b6\u3001\u6587\u5316\u50b3\u7d71\u548c \u7576\u4ee3\u85dd\u8853\u7684\u60f3\u6cd5\u548c\u611f\u53d7\u3002\u300a\u812b\u8863\u63db\u9326\u300b\u6a21\u64ec\u5979\u7ae5\u5e74\u66ff\u6d0b\u5a03\u5a03\u63db\u8863\u88f3\u7684\u904a\u6232\uff0c\u800c\u300a\u6b72\u6708\u8f2a\u8ff4\u300b\u4ee4\u5979\u8207\u7236\u89aa\u9ec3\u5e2b\u5085\u5171\u8655\u7684\u6642\u5149\u6c38\u6046\u4e0d\u673d\u3002\u5169\u4efd\u4f5c\u54c1\u90fd\u5145\u65a5\u7740\u96b1\u7d04\u4f46\u5177\u5fc3\u601d\u7684\u542b\u610f\u3002\u4ee5\u300a\u812b\u8863\u63db\u9326\u300b\u70ba\u4f8b\uff0c\u5857\u4e0a\u9752\u82b1\u74f7\u5716\u6848\u7684\u679d\u689d\u8c61\u5fb5\u4e2d\u570b\u6587\u5316\u7684\u5ef6\u7e8c\u548c\u91cd\u751f\uff0c\u800c\u300a\u6b72\u6708\u8f2a\u8ff4\u300b\u7684\u5e74\u8f2a\u8c61\u5fb5\u6b77\u53f2\u548c\u8a18\u61b6\u7684\u5f62\u8c61\u5316\u3002     \u5dba\u5357\u76c6\u666f\u7684\u6545\u4e8b  \u76c6\u666f\u6c92\u6709\u55ae\u4e00\u7684\u8d77\u6e90\u9ede\uff0c\u9ec3\u5e2b\u5085\u64c5\u9577\u7684\u5dba\u5357\u76c6\u666f\u5c6c\u65bc\u4e5d\u5927\u6d41\u6d3e\u4e4b\u4e00\u3002\u6839\u64da\u9ec3\u5e2b\u5085\u7684\u5206\u4eab\uff0c\u5dba\u5357\u76c6\u666f\u5d07\u5c1a\u81ea\u7136\uff0c\u8457\u91cd\u8b93\u666f\u89c0\u690d\u7269\u4ee5\u81ea\u7136\u7684\u578b\u614b\u751f\u9577 \uff0c\u76e1\u91cf\u6e1b\u5c11\u4e0d\u5fc5\u8981\u7684\u4eba\u5de5\u5e72\u9810\uff0c\u901a\u904e\u622a\u5e79\u84c4\u679d\u7368\u7279\u624b\u6cd5\u53cd\u8986\u4f86\u7a81\u986f\u4e0d\u540c\u76c6\u666f\u7684\u7368\u7279\u81ea\u7136\u8b8a\u5316\uff1b\u800c\u65e5\u672c\u76c6\u666f\u5247\u5927\u591a\u6578\u9700\u8981\u5de5\u85dd\u5e2b\u4e3b\u52d5\u53c3\u8207\uff0c\u900f\u904e\u5229\u7528\u92c1\u7dda\u6216\u9285\u7dda\u7e8f\u7e5e\u5728\u6a39\u5e79\u53ca\u6a39\u679d\uff0c\u4ee5\u4eba\u5de5\u65b9\u5f0f\u626d\u66f2\u6210\u7406\u60f3\u7684\u5f62\u614b\uff0c\u4ee5\u9054\u5230\u9810\u671f\u7684\u6548\u679c\u3002\u63db\u53e5\u8a71\u8aaa\uff0c\u5dba\u5357\u76c6\u666f\u7684\u7368\u7279\u4e4b\u8655\uff0c\u5728\u65bc\u5de5\u85dd\u5e2b\u81f4\u529b\u65bc\u900f\u904e\u5c0a\u91cd\u6bcf\u7a2e\u690d\u7269\u7684\u500b\u6027\u4f86\u9023\u7d50\u4eba\u985e\u8207\u81ea\u7136\u3002  \u5dba\u5357\u76c6\u666f\u4e4b\u7f8e\uff0c\u7cbe\u9ad3\u5728\u65bc\u679d\u5e79\u7684\u5de7\u5999\u4f48\u5c40\u8207\u7dda\u689d\u7684\u6d41\u66a2\u548c\u8ae7\u3002\u5176\u6280\u6cd5\u8b8a\u5316\u591a\u7aef\uff0c\u9700\u8981\u5de5\u85dd\u5e2b\u6089\u5fc3\u7422\u78e8\uff0c\u65b9\u80fd\u81fb\u65bc\u5b8c\u7f8e\u3002\u4ee5\u4e0b\u7d30\u8ff0\u5176\u7cbe\u5999\u4e4b\u8655\uff1a  \u4fee\u526a\u9020\u578b\uff1a\u8207\u5176\u4ed6\u56b4\u683c\u5f37\u8abf\u5c0d\u7a31\u7684\u76c6\u666f\u76f8\u6bd4\uff0c\u5dba\u5357\u76c6\u666f\u66f4\u701f\u7051\u5954\u653e\u548c\u63a5\u8fd1\u5927\u81ea\u7136\u3002\u900f\u904e\u9078\u64c7\u6027\u5730\u4fee\u526a\u6a39\u679d\u548c\u622a\u5e79\uff0c\u6a39\u5e79\u548c\u679d\u689d\u80fd\u66f4\u81ea\u7136\u5730\u751f\u9577\u3002\u5de5\u85dd\u5e2b\u4e5f\u900f\u904e\u7d30\u5fc3\u5730\u53cd\u8986\u4fee\u526a\u4ee4\u6a39\u679d\u81ea\u7136\u5f4e\u66f2\uff0c\u6a21\u4eff\u91ce\u751f\u6a39\u6728\u751f\u9577\u7684\u66f2\u7dda\u548c\u89d2\u5ea6\u3002 \u7e8f\u7dda\uff1a\u5dba\u5357\u76c6\u666f\u4ee5\u6a39\u70ba\u672c\uff0c\u76e1\u91cf\u6e1b\u5c11\u7528\u7e8f\u7e5e\u92c1\u7dda\u4f86\u5b9a\u578b\uff0c\u8b93\u690d\u7269\u81ea\u7136\u5730\u751f\u9577\u3002 \u4fee\u526a\u6839\u90e8\uff1a\u5b9a\u671f\u4fee\u526a\u6839\u90e8\u4ee4\u76c6\u666f\u6cbf\u8457\u6ce5\u571f\u7684\u8868\u9762\u548c\u7279\u5b9a\u7684\u65b9\u5411\u751f\u9577\uff0c\u5f62\u6210\u7368\u7279\u7684\u5f62\u72c0\uff0c\u4fc3\u9032\u690d\u7269\u7684\u5065\u5eb7\u3002 \u9078\u76c6\uff1a\u914d\u5408\u6301\u7e8c\u7684\u6839\u90e8\u4fee\u526a\uff0c\u4f7f\u7528\u6dfa\u76c6\u6709\u52a9\u65bc\u63a7\u5236\u6c34\u4efd\uff0c\u4fdd\u6301\u6839\u90e8\u7684\u5065\u5eb7\u3002\u6b64\u5916\uff0c\u91c9\u9762\u76c6\u4e5f\u6703\u7528\u4f86\u9ede\u7db4\u76c6\u666f\uff0c\u589e\u5f37\u85dd\u8853\u7f8e\u611f\u3002 \u98a8\u683c\uff1a\u5dba\u5357\u76c6\u666f\u5d07\u5c1a\u81ea\u7136\uff0c\u6a39\u6728\u7684\u4fee\u526a\u4ee5\u7a81\u51fa\u5176\u52d5\u614b\u7f8e\u70ba\u9996\u8981\uff0c\u6a21\u4eff\u5927\u81ea\u7136\u6a39\u6728\u6416\u66f3\u7684\u81ea\u7136\u7f8e\u614b\u3002 \u9ede\u7db4\uff1a\u77f3\u548c\u9752\u82d4\u70ba\u5dba\u5357\u76c6\u666f\u756b\u9f8d\u9ede\u775b\u3002\u9644\u77f3\u76c6\u666f\u4e2d\u7684\u77f3\u5177\u6709\u5e7e\u500b\u91cd\u8981\u7684\u4f5c\u7528\uff0c\u5206\u5225\u662f\u5e73\u8861\u69cb\u5716\u3001\u589e\u5f37\u53ef\u89c0\u6027\u53ca\u96aa\u5cfb\u611f\u3002\u53e6\u4e00\u65b9\u9762\uff0c\u9752\u82d4\u5247\u92ea\u5728\u571f\u58e4\u7684\u8868\u9762\uff0c\u8b93\u76c6\u666f\u666f\u89c0\u66f4\u8cbc\u8fd1\u5927\u81ea\u7136\u3002 \u4fdd\u8b77\u65b9\u6cd5\uff1a\u70ba\u4e86\u6e1b\u5c11\u690d\u7269\u53d7\u904e\u591a\u7684\u71b1\u529b\u800c\u707c\u50b7\u6a39\u5e79\u7684\u8868\u76ae\u800c\u9020\u6210\u67af\u840e\uff0c\u5de5\u85dd\u5e2b\u6709\u7b56\u7565\u5730\u653e\u7f6e\u932b\u7d19\u6216\u4eba\u5de5\u5408\u6210\u7684\u588a\uff0c\u4ee5\u4fdd\u8b77\u53d7\u5149\u6700\u9577\u6642\u9593\u7684\u76f4\u5c04\uff0c\u4e26\u6700\u5927\u9650\u5ea6\u5730\u6e1b\u5c11\u6a39\u5e79\u53d7\u50b7\u7684\u6a5f\u6703\u3002 \u654f\u92b3\u7684\u89c0\u5bdf\u529b\uff1a\u5de5\u85dd\u5e2b\u7d93\u5e38\u5f9e\u81ea\u7136\u74b0\u5883\u4e2d\u6c72\u53d6\u9748\u611f\u3002\u9019\u9700\u8981\u7121\u53ef\u6311\u5254\u7684\u89c0\u5bdf\u6280\u5de7\u3001\u8010\u5fc3\u548c\u5c0d\u5927\u81ea\u7136\u7684\u771f\u8aa0\u6b23\u8cde\u3002     \u88fd\u4f5c\u5de5\u5e8f  \u9ec3\u9326\u654f\u5f9e\u9ec3\u5e2b\u5085\u7684\u76c6\u666f\u4e2d\u6c72\u53d6\u9748\u611f\uff0c\u5c07\u67af\u673d\u7684\u6a39\u6a01\u548c\u679d\u5e79\u7b49\u5143\u7d20\u91cd\u65b0\u8a6e\u91cb\uff0c\u5275\u4f5c\u51fa\u9019\u7cfb\u5217\u7684\u4f5c\u54c1\u3002  \u5979\u5148\u5f9e\u539f\u76c6\u666f\u4e2d\u526a\u4e0b\u4e0d\u540c\u7684\u679d\u689d\uff0c\u7528\u9ad8\u6e29\u70f9\u716e\u9032\u884c\u6d88\u6bd2\uff0c\u9019\u6a23\u53ef\u4ee5\u9632\u6b62\u5bb3\u87f2\u7684\u6ecb\u751f\uff0c\u4e26\u963b\u6b62\u690d \u7269\u9032\u4e00\u6b65\u8150\u721b\uff0c\u7136\u5f8c\u5979\u7528\u5237\u5b50\u7d30\u5fc3\u5730\u6e05\u6f54\u679d\u689d\uff0c\u5c07\u6a39\u679d\u653e\u5728\u967d\u5149\u4e0b\u667e\u4e7e\u76f4\u5230\u6c34\u5206\u5168\u90e8\u84b8\u767c\uff0c\u518d\u7528\u9152\u7cbe\u6e05\u6f54\u8868\u9762\uff0c\u7d93\u904e\u4fee\u526a\u548c\u6e05\u6f54\u5f8c\uff0c\u5979\u5229\u7528\u9019\u4e9b\u679d\u689d\u5be6\u73fe\u85dd\u8853\u69cb\u601d\u3002  \u70ba\u4e86\u88fd\u4f5c\u300a\u812b\u8863\u63db\u9326\u300b\u548c\u300a\u6b72\u6708\u8f2a\u8ff4\u300b\u9019\u5c0d\u5177\u4e92\u52d5\u6027\u7684\u96d5\u5851\uff0c\u5979\u5728\u300a\u812b\u8863\u63db\u9326\u300b\u7684\u6a39\u679d\u4e0a\u91c9\u4e26\u4ee5\u9752\u82b1\u74f7\u5716\u6848\u88dd\u98fe\uff0c\u53e6\u5916\u70ba \u300a\u6b72\u6708\u8f2a\u8ff4\u300b \u5857\u4e0a\u611f\u5149\u8b8a\u8272\u6cb9\u58a8\uff0c\u4f7f\u5176\u5728\u7d2b\u5916\u7dda\u7167\u5c04\u4e0b\u986f\u73fe\u51fa\u9752\u82b1\u74f7\u5716\u6848\u3002"}