1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <!DOCTYPE HTML> <html> <head> <title>QQ空间分享</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <input type="button" onclick="shareQQzone();" value="分享"></input> </body> <script src="http://qzonestyle.gtimg.cn/qzone/app/qzlike/qzopensl.js#jsdate=20111201" charset="utf-8"></script> <script> function shareQQzone(){ var _url = 'https://windeling.com/2023111169c64279/'; var _showcount = '1' var _desc = '说点什么吧'; var _summary = 'Windeling的摄影作品'; var _title = '摄影作品-竹山村'; var _site = '没有显示'; var _pic = 'https://pic3.zhimg.com/80/v2-8a734f046386f6aaba97fb7c5d56f346_720w.webp'; var _width= '800px'; var _height= '200px'; var _shareUrl = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?'; _shareUrl += 'url=' + encodeURIComponent(_url||document.location); _shareUrl += '&showcount=' + _showcount||0; _shareUrl += '&desc=' + encodeURIComponent(_desc||'分享的描述'); _shareUrl += '&summary=' + encodeURIComponent(_summary||'分享摘要'); _shareUrl += '&title=' + encodeURIComponent(_title||document.title); _shareUrl += '&site=' + encodeURIComponent(_site||''); _shareUrl += '&pics=' + encodeURIComponent(_pic||''); window.open(_shareUrl,'_blank','width='+_width+',height='+_height+',top='+(screen.height-_height)/2+',left='+(screen.width-_width)/2+',toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0'); } </script> </html>
|