পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Sunday, February 19, 2017

Framework7 - Side Panels

Description

The side panel moves to left or right side of the screen to display the content. Framework7 allows you to include up to 2 panels (right side panel and left side panel) to your app. You need to add panels in the beginning of the <body> and then choose opening effect by applying the below listed classes:

  • panel-reveal - This will moves out whole app's content.
  • panel-cover - This will make the panel to overlay on app's content.
For instance, the below code shows how to use above classes:
<body>
    <!-- First add Panel's overlay which will overlays app while panel is opened -->
    <div class="panel-overlay"></div>
 
    <!-- Left panel -->
    <div class="panel panel-left panel-cover">
         panel's content
    </div>
 
    <!-- Right panel -->
    <div class="panel panel-right panel-reveal">
         panel's content
    </div>
 
</body>     
The below table shows the panel types supported by the Framework7:
S.N.Type & Description
1 Open and Close Panels
Once you add panel and effects, we need to add functionality to open and close the panels.
2 Panel Events
To detect how user interacts with the panel, you can use panel events.
3 Open Panels With Swipe
Framework7 provides you the feature to open panel with swipe gesture.
4 Panel is Opened?
We can determine whether panel is opened or not by using the with-panel-[position]-[effect] rule.

No comments:

Post a Comment