Framework7 - Links With Text & Icons



Description

The links can be provided with icons and text by adding classes for icons and wrapping the link text with <span> element.

Example

The following example demonstrates the use of navbar links with text and icons in the Framework7 −

<!DOCTYPE html>
<html>

   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1, 
         maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui" />
      <meta name = "apple-mobile-web-app-capable" content = "yes" />
      <meta name = "apple-mobile-web-app-status-bar-style" content = "black" />
      <title>Navbar Links With Text & Icons</title>
      <link rel = "stylesheet" 
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" />
      <link rel = "stylesheet" 
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" />
   </head>

   <body>
      <div class = "views">
         <div class = "view view-main">
            <div class = "navbar">
               <div class = "navbar-inner">
               
                  <div class = "left">
                     <a href = "#" class = "link"> <i class = "icon icon-back"></i><span>Previous</span></a>
                  </div>
                  
                  <div class = "center">Center</div>
                  
                  <div class = "right">
                     <a href = "#" class = "link"> <i class = "icon icon-bars"></i><span>Menu</span></a>
                  </div>
                  
               </div>
            </div>
            
            <div class = "pages navbar-through ">
               <div data-page = "index" class = "page">
                  <div class = "page-content">
                     <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
                        Suspendisse at nibh felis. Nunc consequat diam et tellus tempor gravida. 
                        Donec hendrerit aliquet risus, ut tempor purus dictum sit amet. Integer 
                        sit amet lacus eget ipsum pulvinar interdum. Proin semper turpis sed placerat 
                        dapibus. Sed iaculis id nibh a viverra. Sed vitae tellus sed purus lacinia 
                        dignissim. Aenean sagittis interdum leo in molestie. Aliquam sodales in diam 
                        eu consectetur. Sed posuere a orci id imperdiet.</p>
                     
                     <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
                        Suspendisse at nibh felis. Nunc consequat diam et tellus tempor gravida. 
                        Donec hendrerit aliquet risus, ut tempor purus dictum sit amet. Integer 
                        sit amet lacus eget ipsum pulvinar interdum. Proin semper turpis sed placerat 
                        dapibus. Sed iaculis id nibh a viverra. Sed vitae tellus sed purus lacinia 
                        dignissim. Aenean sagittis interdum leo in molestie. Aliquam sodales in diam 
                        eu consectetur. Sed posuere a orci id imperdiet.</p>
                  </div>
               </div>
            </div>
            
         </div>
      </div>
      
      <script type = "text/javascript" 
         src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>
   </body>

</html>

Output

Let us carry out the following steps to see how the above given code works −

  • Save the above given html code as navbar_links_icons.html file in your server root folder.

  • Open this HTML file as http://localhost/navbar_links_icons.html and the output is displayed as shown below.

  • The navbar provides links with the icons and text by wrapping the link's text with span element.

framework7_navbars.htm
Advertisements