Zoom Component View

Hello everyone i’m working on ZOOM Web SDK Component View . I have my own web page where i’m opening zoom video. I just want to hide the ribbons that are showing in bottom of meeting is this possible

This is my script is that i’m using in my code to initiate the meeting

client.init({
zoomAppRoot: meetingSDKElement,
language: ‘en-US’,
audioPanelAlwaysOpen : false,
customize: {
video: {
isResizable: true,
viewSizes: {
default: {
width: 1000,
height: 600
},
ribbon: {
width: 300,
height: 700
}
}
}
}
})