MUI implements slide up and down of the slide menu and its main part.
The slide menu in the MUI document does not show how to achieve slide. By default, the MUI slide menu does not have the function of swiping up or down.
1. First, add the ID on the element of class = "mui-scroll-wrapper:
<! -- Slide navigation root container --> <div class = "mui-off-canvas-wrap mui-draggable"> <! -- Menu container --> <aside class = "mui-off-canvas-left"> <div id = "offCanvasSideScroll" class = "mui-scroll-wrapper"> <div class = "mui-scroll"> <! -- Specific menu display content -->... </div> </aside> <! -- Homepage container --> <div class = "mui-inner-wrap"> <! -- Homepage title -->
As shown in the preceding example, the ID is added to the slide menu and the main part.
They are: offCanvasSideScroll and offCanvasContentScroll
2. Activate in JS:
mui('#offCanvasSideScroll').scroll(); mui('#offCanvasContentScroll').scroll();
The success is achieved, and now the decline can be achieved after the height is exceeded.Note that it exceeds the height!Like a browser, if the "specific content displayed on the main interface" is not out of scope, there is no downgrading function.
MUI: MUI slide menu.
Complete code:
<! DOCTYPE html>
The above MUI method for implementing the slide menu and its main part is to share all the content with you. I hope to give you a reference and hope you can support the house of helping customers.