Panel / Side Panels - 图1

Panel Vue Component

Panel Vue component represents Side Panels component.

Panel Components

There are following components included:

  • f7-panel - Panel element

Panel Properties

PropTypeDefaultDescription
sidestringPanel side. Could be left or right
leftbooleanShortcut prop for side=”left”
rightbooleanShortcut prop for side=”right”
effectstringPanel effect. Could be cover or reveal
coverbooleanShortcut prop for effect=”cover”
revealbooleanShortcut prop for effect=”reveal”
visibleBreakpointnumberMinimal app width (in px) when left panel becomes always visible
collapsedBreakpointnumberMinimal app width (in px) when left panel becomes partially visible (collapsed)
swipebooleanfalseEnable if you want to enable ability to open/close panel with swipe
swipeNoFollowbooleanfalseFallback option for potentially better performance on old/slow devices. If you enable it, then swipe panel will not follow your finger during touch move, it will be automatically opened/closed on swipe left/right.
swipeActiveAreanumber0Width (in px) of invisible edge from the screen that triggers panel swipe
swipeOnlyClosebooleanfalseThis parameter allows to close (but not open) panel with swipes. (swipe should be also enabled)
swipeThresholdnumber0Panel will not move with swipe if “touch distance” will be less than this value (in px).
backdropbooleantrueEnables Panel backdrop (dark semi transparent layer behind)
backdropElHTMLElement
string
HTML element or string CSS selector of custom backdrop element
closeByBackdropClickbooleantrueEnable/disable ability to close panel by clicking outside of panel
resizablebooleanfalseEnables/disables resizable panel
openedbooleanAllows to open/close panel and set its initial state

Panel Methods

.open(animate)Open panel
.close(animate)Close panel

Panel Events

EventDescription
panel:openEvent will be triggered when Panel starts its opening animation
panel:openedEvent will be triggered after Panel completes its opening animation
panel:closeEvent will be triggered when Panel starts its closing animation
panel:closedEvent will be triggered after Panel completes its closing animation
panel:backdrop-clickEvent will be triggered when the panel backdrop is clicked
panel:swipeEvent will be triggered for swipe panels during touch swipe action
panel:swipeopenEvent will be triggered in the very beginning of opening it with swipe
panel:collapsedbreakpointEvent will be triggered when it becomes visible/hidden when app width matches its collapsedBreakpoint
panel:breakpointEvent will be triggered when it becomes visible/hidden when app width matches its visibleBreakpoint

Open And Close Panel

You can control panel state, open and closing it:

  • using Panel API
  • by passing true or false to its opened prop
  • by clicking on Link or Button with relevant panel-open property (to open it) and panel-close property to close it

Access To Panel Instance

You can access Panel initialized instance by accessing .f7Panel component’s property.

Examples

  1. /* Limit resizable panel width */
  2. .panel {
  3. min-width: 100px;
  4. max-width: 90vw;
  5. }
  1. <f7-app>
  2. <!-- Left resizable Panel with Reveal effect -->
  3. <f7-panel left reveal resizable>
  4. <f7-view>
  5. <f7-page>
  6. <f7-block>Left panel content</f7-block>
  7. </f7-page>
  8. </f7-view>
  9. </f7-panel>
  10. <!-- Right resizable Panel with Cover effect and dark layout theme -->
  11. <f7-panel right resizable theme-dark>
  12. <f7-view>
  13. <f7-page>
  14. <f7-block>Right panel content</f7-block>
  15. </f7-page>
  16. </f7-view>
  17. </f7-panel>
  18. <!-- Main view -->
  19. <f7-view main>
  20. <f7-page>
  21. <f7-navbar title="Panel"></f7-navbar>
  22. <f7-block class="row">
  23. <f7-col>
  24. <f7-button raised panel-open="left">Open left panel</f7-button>
  25. </f7-col>
  26. <f7-col>
  27. <f7-button raised panel-open="right">Open right panel</f7-button>
  28. </f7-col>
  29. </f7-block>
  30. </f7-page>
  31. </f7-view>
  32. </f7-app>

← Page

Photo Browser →