{"version":"1.0","provider_name":"\u57fa\u7763\u6559\u9748\u5be6\u5354\u6703","provider_url":"https:\/\/hohcs.org.hk\/en\/","author_name":"Admin HOHCS","author_url":"https:\/\/hohcs.org.hk\/en\/author\/hohcs_admin\/","title":"\u8212\u7b4b\u6a02\u6d3b\u65b0\u91cc\u7a0b\u8a08\u5283","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"8WRH9I2FhN\"><a href=\"https:\/\/hohcs.org.hk\/en\/the-relive-project\/\">\u8212\u7b4b\u6a02\u6d3b\u65b0\u91cc\u7a0b\u8a08\u5283<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/hohcs.org.hk\/en\/the-relive-project\/embed\/#?secret=8WRH9I2FhN\" width=\"600\" height=\"338\" title=\"&#8220;\u8212\u7b4b\u6a02\u6d3b\u65b0\u91cc\u7a0b\u8a08\u5283&#8221; &#8212; \u57fa\u7763\u6559\u9748\u5be6\u5354\u6703\" data-secret=\"8WRH9I2FhN\" 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\n\/* ]]> *\/\n<\/script>\n","description":"\u8212\u7b4b\u6a02\u6d3b\u65b0\u91cc\u7a0b\u8a08\u5283 \u9748\u5be6\u5c07\u8ecd\u6fb3\u53ca\u897f\u8ca2\u5730\u5340\u652f\u63f4\u4e2d\u5fc3\u7684\u8077\u696d\u6cbb\u7642\u5e2b\u5718\u968a\uff0c\u57282020\u5e7410\u6708\u63a8\u51fa\u7531\u516c\u76ca\u91d1\u8cc7\u52a9\u7684\u300c\u8212\u7b4b\u6a02\u6d3b\u65b0\u91cc\u7a0b\u300d\u8a08\u5283(The ReLive Project)\uff0c\u55bb\u610f\u300c\u91cd\u65b0\u51fa\u767c\u300d\uff0c\u5e0c\u671b\u8207\u4e00\u773e\u53d7\u8eab\u9ad4\u6301\u7e8c\u75d9\u6523\u6216\u6523\u7e2e\u7684\u518d\u751f\u52c7\u58eb\u540c\u6b65\u91cd\u8fd4\u81ea\u4e3b\u793e\u5340\u751f\u6d3b\u3002\u53ea\u8981\u6210\u70ba\u8a08\u5283\u6703\u54e1\uff0c\u5373\u53ef\u4eab\u7528\u8a08\u5283\u4e2d\u7684\u6240\u6709\u670d\u52d9\uff0c\u5305\u62ec\u4e00\u5c0d\u4e00\u751f\u6d3b\u91cd\u6574\u500b\u4eba\u652f\u63f4\u3001\u5bb6\u5c45\u7df4\u7fd2\u53ca\u5bb6\u8a2a\u3001\u5fa9\u5eb7\u53ca\u81ea\u7406\u8a13\u7df4\u3001\u5fa9\u5eb7\u5de5\u5177\u8a02\u88fd\u53ca\u53ef\u79df\u53ef\u8cb7\u8a08\u5283\u3001\u6a02\u6d3b\u65b0\u614b\u5ea6\u5c0f\u7d44\u3001\u8212\u7b4b\u6a02\u6d3b\u5927\u4f7f\u8b49\u66f8\u8ab2\u7a0b\u3001\u5883\u5916\u4ea4\u6d41\u5718\u7b49\u3002 \u00a0 \u00a0 \u9019\u9805\u8a08\u5283\u7279\u5225\u4e4b\u8655\u5728\u65bc\u70ba\u6bcf\u4f4d\u670d\u52d9\u4f7f\u7528\u8005\u5236\u8a02\u500b\u4eba\u5316\u65b9\u6848\uff0c\u4e26\u5728\u5e73\u5e38\u7684\u75d9\u6523\u5fa9\u5eb7\u4e4b\u5916\uff0c\u52a0\u5165\u8077\u696d\u6cbb\u7642\u5fc3\u7406\u5065\u5eb7\u53ca\u751f\u6d3b\u91cd\u6574\u7684\u4ecb\u5165\uff0c\u4f7f\u670d\u52d9\u4f7f\u7528\u8005\u66f4\u6709\u6548\u5730\u81ea\u4e3b\u53ca\u7ba1\u7406\u8eab\u9ad4\u75d9\u6523\u53ca\u5b7f\u7e2e\u60c5\u6cc1\u3001\u91cd\u6574\u65b0\u7684\u751f\u6d3b\u614b\u5ea6\u3001\u5efa\u7acb\u8eab\u5fc3\u5065\u5eb7\u7684\u751f\u6d3b\u6a21\u5f0f\u3001\u91cd\u7372\u81ea\u4fe1\u81ea\u4e3b\u7684\u8eab\u4efd\uff0c\u5f9e\u800c\u91cd\u6295\u793e\u5340\u751f\u6d3b\uff0c\u4e26\u4ee5\u81ea\u8eab\u7684\u7d93\u6b77\u548c\u9ad4\u9a57\uff0c\u53bb\u5f71\u97ff\u548c\u9f13\u52f5\u5176\u4ed6\u4eba\u3002\u5982\u6709\u9700\u8981\u6216\u67e5\u8a62\uff0c\u53ef\u81f4\u96fb2702 6002\u3002 \u6d3b\u52d5\u7247\u6bb5 https:\/\/youtu.be\/XpIBrM4p72ghttps:\/\/youtu.be\/wbJ_fmwQH5o \u5a92\u9ad4\u5831\u5c0e \u6fb3\u6d32\u6a02\u6d3b\u4e4b\u65c5 \u5c55\u73fe\u751f\u547d\u7684\u53ef\u80fd\u6027 \u4e00\u73ed\u7a4d\u6975\u7684\u518d\u751f\u52c7\u58eb\u6191\u6c7a\u5fc3\u548c\u610f\u5fd7\u6392\u9664\u842c\u96e3\uff0c\u9060\u8d74\u6fb3\u6d32\u58a8\u723e\u672c\u5c55\u958b\u516d\u65e5\u4e94\u591c\u7684\u300c2022\u5e74\u6a02\u6d3b\u4e4b\u65c5\u2014\u2014\u52c7\u95d6\u6fb3\u6d32\u81ea\u7531\u884c\u300d\uff0c\u5411\u5927\u5bb6\u5c55\u73fe\u751f\u547d\u662f\u53ef\u4ee5\u6539\u8b8a\u53ca\u6709\u8a31\u53ef\u80fd\u6027\u3002 \u4e86\u89e3\u66f4\u591a \u518d\u751f\u52c7\u58eb\u95d6\u6fb3\u6d32 \u4e00\u5291\u4fe1\u5fc3\u7279\u6548\u85e5 \u3010\u660e\u5831\u5c08\u8a0a\u3011\u82e5\u4f60\u4e0d\u80fd\u518d\u8d70\u52d5\uff0c\u751a\u81f3\u7121\u6cd5\u81ea\u7406\uff0c\u4f60\u5c0d\u751f\u6d3b\u4ecd\u7136\u62b1\u6709\u5e0c\u671b\u55ce\uff1f \u4e86\u89e3\u66f4\u591a","thumbnail_url":"https:\/\/hohcs.org.hk\/wp-content\/uploads\/2021\/10\/image1.png"}