1234567891011121314151617181920212223242526 |
- // setTimeout(() => {
- // console.log('-----unity实例', unityExamples);
- // }, 2000);
- // 分享页面
- const shareDom = document.querySelector('.shareBox')
- window.onClickShare = () => {
- // console.log(123456);
- shareDom.style.opacity = '1'
- shareDom.style.pointerEvents = 'auto'
- // var a = document.createElement('a')
- // a.download = 'image'
- // a.href = '../StreamingAssets/share.png'
- // a.click()
- }
- document.querySelector('.shareBtn').onclick = () => {
- shareDom.style.opacity = '0'
- shareDom.style.pointerEvents = 'none'
- }
|