how to enable full screen option in zoom meeting embedded in a web page | Community
Skip to main content
Newcomer
May 27, 2022
Question

how to enable full screen option in zoom meeting embedded in a web page

  • May 27, 2022
  • 0 replies
  • 0 views

imported Zoom by CDN

<Script src="https://source.zoom.us/2.4.0/lib/vendor/react.min.js" strategy="beforeInteractive" />
                <Script src="https://source.zoom.us/2.4.0/lib/vendor/react-dom.min.js" strategy="beforeInteractive" />
                <Script src="https://source.zoom.us/2.4.0/lib/vendor/redux.min.js" strategy="beforeInteractive" />
                <Script src="https://source.zoom.us/2.4.0/lib/vendor/redux-thunk.min.js" strategy="beforeInteractive" />
                <Script src="https://source.zoom.us/2.4.0/lib/vendor/lodash.min.js" strategy="beforeInteractive" />
                <Script src="https://source.zoom.us/2.4.0/zoom-meeting-embedded-2.4.0.min.js" strategy="beforeInteractive" />
 
 
let meetingSDKElement = document.getElementById('meetingSDKElement');
    this.state.client.init({
      debug: false,
      zoomAppRoot: meetingSDKElement,
      leaveUrl: e.leaveUrl,
      language: 'en-US',
      isSupportChat: true,
      customize: {
        meetingInfo: ['topic', 'host', 'mn', 'pwd', 'telPwd', 'invite', 'participant', 'dc', 'enctype'],
        // toolbar: {
     
        //     }
        //   ]
        // }
      }
    });
 
how to add full screen option for user