Fixed side menu like bootstrap and ionic documentation

Developer
Size
6,684 Kb
Views
22,264

How do I make an fixed side menu like bootstrap and ionic documentation?

Still has ionic info in it, about to delete and replace entirely with my stuff. What is a fixed side menu like bootstrap and ionic documentation? How do you make a fixed side menu like bootstrap and ionic documentation? This script and codes were developed by Lizz on 18 August 2022, Thursday.

Fixed side menu like bootstrap and ionic documentation Previews

Fixed side menu like bootstrap and ionic documentation - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>fixed side menu like bootstrap and ionic documentation</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <!DOCTYPE html>
<html lang="en"> <head> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="ionic documentation overview website">
<meta name="author" content="Drifty">
<!-- Ionic Documentation Overview - Ionic Framework --> <title>iDay Career Fair Pocket Guide</title> <link href="http://ionicframework.com/css/site.css?2" rel="stylesheet">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> </head> <body class="docs docs-page docs-overview"> <div class="header horizontal-gradient"> <div class="container"> <h3>Career Fair Pocket Guide</h3> <h4>Copy/paste data from Excel into the specified text areas to format the career fair app's data.</h4> </div> <div class="news"> <div class="container"> <div class="row"> <div class="col-sm-8 news-col"> Check out the <a href="">tutorial</a> for more detailed instructions. <!--, which includes more detailed instructions. for setting up.Copy/paste data from Excel into the specified text areas to format the data to build/generate the app--> </div> <!-- <div class="col-sm-4 search-col"> <div class="search-bar"> <span class="search-icon ionic"><i class="ion-ios7-search-strong"></i></span> <input type="search" id="search-input" value="Search">
</div>
--> </div> </div> </div> </div>
</div> <div class="container content-container"> <div class="row"> <div class="col-md-2 col-sm-3 aside-menu"> <div class="docked-menu"> <!-- Docs: Overview --> <ul class="nav left-menu active-menu"> <li><a href="/docs/overview/#major-data">Major Data</a></li> <li><a href="/docs/overview/#position-data">Position Data</a></li> <li><a href="/docs/overview/#booth-data">Booth Data</a></li> <li><a href="/docs/overview/#companyGrid">Company Grid</a></li> <li class="menu-title"><a href="/docs/overview/">Overview</a></li> <li><a href="/docs/overview/#download">Download</a></li> <li><a href="/docs/overview/#starter">Starter Project</a></li> <li><a href="/docs/overview/#whats-included">What's included</a></li> <li><a href="/docs/overview/#companyGrid">About Ionic companyGrid</a></li> </ul> <ul class="nav left-menu"> <li class="menu-title"><a href="">Guide</a></li> </ul> <ul class="nav left-menu"> <li class="menu-title"><a href="">CSS</a></li> </ul> <ul class="nav left-menu"> <li class="menu-title"><a href="">JavaScript</a></li> </ul> </div> <!-- /docked-menu --> </div> <!-- /col-md-2 col-sm-3 aside-menu --> <div class="col-md-10 col-sm-9 main-content"> <!-- Getting Started ================================================== --> <section class="docs-section" id="overview"> <h1 class="title"><a href="#overview">Overview</a></h1> <p>Welcome! Ionic is a powerful HTML5 native app development framework that helps you build native-feeling mobile apps all with web technologies like HTML, CSS, and Javascript.</p> <div id="getting-started"> <div class="text-center"> <h2>Start building with Ionic!</h2> <p class="sub-heading"> Follow these quick steps and start building high quality mobile apps in minutes. For a more indepth overview, watch our <a href="" target="">Crash Course video</a>, which covers everything else you'd want to know. </p> </div> <!-- ~~~~~~~~~~.......... STEP 1 ..........~~~~~~~~~~ --> <div class="row" id="first-step"> <div class="col-md-6 step-desc"> <div class="num"> <img src="http://ionicframework.com/img/docs/symbols/[email protected]" width="52" height="52"> </div> <!-- /num--> <div class="desc"> <h3>Install Ionic</h3> <p> First, install Node.js. Then, install the latest Cordova and Ionic command-line tools. Follow the Android and iOS platform guides to install required platform dependencies. Windows users might want to watch this installation video. </p> <p> <i>Note: iOS development requires Mac OS X.</i> </p> </div> <!-- /desc--> </div> <!-- /col-md-6 step-desc --> <div class="col-md-6 code">
<div class="highlight"> <pre><code class="bash"><span class="nv">$ </span>npm install -g cordova ionic</code></pre> </div> <!-- /highlight --> </div> <!-- /col-md-6 code --> </div> <!-- /row first-step --> <!-- .......... STEP 2 .......... --> <div class="row"> <div class="col-md-6 step-desc"> <div class="num"> <img src="http://ionicframework.com/img/docs/symbols/[email protected]" width="52" height="52"> </div> <div class="desc"> <h3>Start a project</h3> <p> Create an Ionic project using one of our ready-made app templates, or a blank one to start fresh. </p> </div> </div> <div class="col-md-6 code"> <div class="highlight"><pre><code class="bash"> <span class="nv">$ </span>ionic start myApp tabs
</code></pre></div> </div> </div> <div class="row" id="template-images"> <div class="template"> <div class="template-image" id="start-template-blank-image"></div> <code>$ ionic start myApp blank</code> </div> <div class="template"> <div class="template-image" id="start-template-tabs-image"></div> <code>$ ionic start myApp tabs</code> </div> <div class="template"> <div class="template-image" id="start-template-sidemenu-image"></div> <code>$ ionic start myApp sidemenu</code> </div> </div> <!-- .......... STEP 3 .......... --> <div class="row"> <div class="col-md-6 step-desc"> <div class="num"> <img src="http://ionicframework.com/img/docs/symbols/[email protected]" width="52" height="52"> </div> <div class="desc"> <h3>Run it</h3> <p> Ionic apps are based on Cordova, so we can use the Cordova utilities to build, test, and deploy our apps, but we provide simple ways to do the same with the ionic utility (substitute ios for android to build for Android): </p> </div> </div> <div class="col-md-6 code">
<div class="highlight"><pre><code class="bash"><span class="nv">$ </span><span class="nb">cd </span>myApp
<span class="nv">$ </span>ionic platform add ios
<span class="nv">$ </span>ionic build ios
<span class="nv">$ </span>ionic emulate ios
</code></pre></div> </div> </div> </div> <!-- /getting started-->
</section>
<!-- MAJORS ================================================== -->
<section class="docs-section" id="major-data"> <h2 class="title"><a href="#major-data">Major Data</a></h2> <p> Insert all possible majors that companies will be recruiting. For <strong>each major</strong>, indicate a <code>friendlyName</code> to display in the user interface, and a <code>name</code>, an abbreviated simple text form of the major - i.e. without any special punctuation - to use in the code. <br>For example, "Computer Science (B.S.)" might have a friendlyName of "CompSci (BS)" and a name of "cs". </p> <pre><span class="data-header">name	friendlyName</span>
AM	Applied Mathematics
BME	Biomedical Engineering
CE	Civil Engineering
ChE	Chemical Engineering
CmpE	Computer Engineering
CS	Computer Science
EE	Electrical Engineering
EnvE	Environmental Engineering
IE	Industrial Engineering
MaDE	Manufacturing and Design Engineering
MatSE	Materials Science and Engineering
MBP	Masters of Biotechnology Program
ME	Mechanical Engineering
MEM	Masters of Engineering Management
MMM	MMM
MPDD	MPDD
MPM	Masters of Product Management
MSEDI	Masters of Science Engineering Design and Innovation
MSIT	Masters of Science Information Technology Program
TAM	Theoretical and Applied Math
UND	Undeclared
MSiA	MSiA
ECS	ECS
Econ	Economics
ISP	Integrated Science Program</pre>
</section>
<!-- POSITIONS ================================================== -->
<section class="docs-section" id="position-data"> <h2 class="title"><a href="#position-data">Position Data</a></h2> <p> Insert all possible positions/job types that companies will be recruiting. For <strong>each position</strong>, indicate a <code>friendlyName</code> to display in the user interface, and an abbreviated simple text <code>name</code> - i.e. without any special punctuation - to use in the code. <br>For example, "MS/Ph.D." might have a friendlyName of "MS/PhD" and a name of "msphd". </p>
<pre><span class="data-header">name	friendlyName</span>
coop	Co-op
FT	FTE
intern	Intern</pre>
</section> <!-- BOOTHS ================================================== -->
<section class="docs-section" id="booth-data"> <h2 class="title"><a href="#booth-data">Booth Data</a></h2> <p> For <strong>each booth/table</strong>, list the <code>booth</code> number, the <code>floor</code> (level) number, and the <code>room</code> name. </p>
<pre><span class="data-header">booth	floor	room</span>
23	1	Heritage
11	1	Heritage
2	1	Heritage
24	1	Heritage
12	1	Heritage
20	1	Heritage
7	1	Heritage
15	1	Heritage
9	1	Heritage
26	1	Heritage</pre>
</section>
<section class="docs-section" id="overview"> <h1 class="title"><a href="#overview">Overview</a></h1> <p>Welcome! Ionic is a powerful HTML5 native app development framework that helps you build native-feeling mobile apps all with web technologies like HTML, CSS, and Javascript.</p> <p> Ionic is focused mainly on the look and feel, and UI interaction of your app. That means we aren't a replacement for <a href="http://phonegap.com/">PhoneGap</a> or your favorite Javascript framework. Instead, Ionic simply fits in well with these projects in order to simplify one big part of your app: the front end. We recommend reading <a href="/blog/where-does-the-ionic-framework-fit-in/">Where does the Ionic Framework fit in?</a> to get a good understand of the framework's goals. </p> <p> <b>Ionic currently requires AngularJS</b> in order to work at its full potential. While you can still use the CSS portion of the framework, you'll miss out on powerful UI interactions, gestures, animations, and other things. In the future we'd like to expand beyond Angular to support other frameworks. </p> <p> We will be releasing Cordova/PhoneGap plugins in the future to expand the capabilities of your apps. </p> <div id="getting-started"> <div class="text-center"> <h2>Start building with Ionic!</h2> <p class="sub-heading"> Follow these quick steps and start building high quality mobile apps in minutes. For a more indepth overview, watch our <a href="" target="">Crash Course video</a>, which covers everything else you'd want to know. </p> </div> <!-- .......... STEP 1 .......... --> <div class="row" id="first-step"> <div class="col-md-6 step-desc"> <div class="num"> <img src="http://ionicframework.com/img/docs/symbols/[email protected]" width="52" height="52"> </div> <div class="desc"> <h3>Install Ionic</h3> <p> First, install <a href="http://nodejs.org/">Node.js</a>. Then, install the latest Cordova and Ionic <a href="">command-line tools</a>. Follow the <a href="">Android</a> and <a href="">iOS</a> platform guides to install required platform dependencies. Windows users might want to watch this <a href="">installation video</a>. </p> <p> <i>Note: iOS development requires Mac OS X.</i> </p> </div> </div> <div class="col-md-6 code">
<div class="highlight"><pre><code class="bash"><span class="nv">$ </span>npm install -g cordova ionic
</code></pre></div> </div> </div> <!-- .......... STEP 2 .......... --> <div class="row"> <div class="col-md-6 step-desc"> <div class="num"> <img src="http://ionicframework.com/img/docs/symbols/[email protected]" width="52" height="52"> </div> <div class="desc"> <h3>Start a project</h3> <p> Create an Ionic project using one of our ready-made app templates, or a blank one to start fresh. </p> </div> </div> <div class="col-md-6 code"> <div class="highlight"><pre><code class="bash"> <span class="nv">$ </span>ionic start myApp tabs
</code></pre></div> </div> </div> <div class="row" id="template-images"> <div class="template"> <div class="template-image" id="start-template-blank-image"></div> <code>$ ionic start myApp blank</code> </div> <div class="template"> <div class="template-image" id="start-template-tabs-image"></div> <code>$ ionic start myApp tabs</code> </div> <div class="template"> <div class="template-image" id="start-template-sidemenu-image"></div> <code>$ ionic start myApp sidemenu</code> </div> </div> <!-- .......... STEP 3 .......... --> <div class="row"> <div class="col-md-6 step-desc"> <div class="num"> <img src="http://ionicframework.com/img/docs/symbols/[email protected]" width="52" height="52"> </div> <div class="desc"> <h3>Run it</h3> <p> Ionic apps are based on Cordova, so we can use the Cordova utilities to build, test, and deploy our apps, but we provide simple ways to do the same with the ionic utility (substitute ios for android to build for Android): </p> </div> </div> <div class="col-md-6 code">
<div class="highlight"><pre><code class="bash"><span class="nv">$ </span><span class="nb">cd </span>myApp
<span class="nv">$ </span>ionic platform add ios
<span class="nv">$ </span>ionic build ios
<span class="nv">$ </span>ionic emulate ios
</code></pre></div> </div> </div> </div> <!-- /getting started-->
</section>
<!-- Download ================================================== -->
<section class="docs-section" id="download"> <h2 class="title"><a href="#download">Download</a></h2> <p> Download the latest official release of Ionic and get started! </p> <ul> <li>Latest Version: 1.0.0-beta.8 "fermium-flamingo"</li> <li>Released: 2014-06-16</li> </ul> <p> <a class="btn btn-primary" href="http://code.ionicframework.com/1.0.0-beta.8/ionic-v1.0.0-beta.8.zip">Download v1.0.0-beta.8 "fermium-flamingo"</a> </p> <p> You can also <a href="https://github.com/driftyco/ionic">clone it on GitHub</a> to get the bleeding edge release. Additionally, all of our <a href="https://github.com/driftyco/ionic/releases">previous releases</a> can also be found on Github. </p>
</section>
<!-- Seed ================================================== -->
<section class="docs-section" id="starter"> <h2 class="title"><a href="#starter">Command Line Utility and Seed Project</a></h2> <p> We have a node.js utility that can be used to quickly start an Ionic project. We are working to build out the functionality of this tool, but right now you can quickly create a project with our <a href="https://github.com/driftyco/ionic-app-base">seed project</a> by doing: </p> <p>
<div class="highlight"><pre><code class="bash"><span class="nv">$ </span>sudo npm install -g ionic
<span class="nv">$ </span>ionic start myproject
</code></pre></div> </p> <p> You can also clone the <a href="https://github.com/driftyco/ionic-app-base">seed project</a> itself, which gives you everything you need to build Ionic apps with Cordova and AngularJS. </p>
</section>
<!-- What's Included ==================================================
<section class="docs-section" id="whats-included"> <h2 class="title"><a href="#whats-included">What's Included</a></h2> <p> Ionic comes with compiled Javascript and CSS for your app, optional Sass files and JS Framework extensions, along with a great <a href="http://ionicons.com/">icon pack</a>. </p>
</section>
-->
<!-- CSS/Sass ================================================== -->
<!-- Phonegap ================================================== -->
<!-- Browser Support ================================================== -->
<!-- Majors ==================================================
<div class="docs-section" id="majors"> <h3><a id="majors">Majors</a></h3> <p> Include all possible majors that companies will be recruiting. <strong>For each major</strong>, indicate the rFirst up is the <code>friendlyName</code>, which is what will be displayed in the user interface, and a <code>name</code>, an abbreviation or simple text form of the major without any special punctuation to identify the major in the code itself. </p>
<pre><span class="data-header">name	friendlyName</span>
AM	Applied Mathematics
BME	Biomedical Engineering
CE	Civil Engineering
ChE	Chemical Engineering
CmpE	Computer Engineering
CS	Computer Science
EE	Electrical Engineering
EnvE	Environmental Engineering
IE	Industrial Engineering
MaDE	Manufacturing and Design Engineering
MatSE	Materials Science and Engineering
MBP	Masters of Biotechnology Program
ME	Mechanical Engineering
MEM	Masters of Engineering Management
MMM	MMM
MPDD	MPDD
MPM	Masters of Product Management
MSEDI	Masters of Science Engineering Design and Innovation
MSIT	Masters of Science Information Technology Program
TAM	Theoretical and Applied Math
UND	Undeclared
MSiA	MSiA
ECS	ECS
Econ	Economics
ISP	Integrated Science Program</pre>
</div> -->
<!-- ================================================== -->
<!-- Positions ==================================================
<div class="docs-section" id="positions"> <h3><a id="positions">Positions</a></h3> <p> Include all possible positions that companies will be recruiting. For each position, indicate the rFirst up is the <code>friendlyName</code>, which is what will be displayed in the user interface, and a <code>name</code>, an abbreviation or simple text form of the major without any special punctuation to identify the major in the code itself. </p>
<pre><span class="data-header">name	friendlyName</span>
coop	Co-op
FT	FTE
intern	Intern</pre>
</div>-->
<!-- ================================================== -->
<!-- About Ionic ================================================== -->
<section class="docs-section" id="companyGrid"> <h2 class="title"><a href="#companyGrid">Company Grid</a></h2> <p> Ionic was built by <a href="">@benjsperry</a>, <a href="">@adamdbradley</a>, and <a href="">@maxlynch</a> at <a href="">Drifty</a>, an independent bootstrapped software company and makers of such fine products as <a href="">Codiqa</a> and <a href="">Jetstrap</a>. </p> <p> Ionic was built to take HTML5 on mobile into the future. We wanted a mobile framework that not only looked and worked great, but was also powerful enough to build the amazing apps the best developers were creating. HTML5's time has arrived. Ionic is the framework that proves it. </p>
</section> </div> <!-- /col-md-10 col-sm-9 main-content --> </div> <!-- /row --> </div> <!-- /container content-container --> <div class="pre-footer"> <div class="row ionic"> <div class="col-sm-6 col-a"> <h4> <a href="/docs/guide/">Read the Book <span class="icon ion-arrow-right-c"></span></a> </h4> <p> A walk through of getting Ionic installed, creating a new project, building the UI, adding logic, testing, deploying on the device, and publishing to various app stores. </p> </div> <!-- /col-sm-6 col-a --> <div class="col-sm-6 col-b"> <h4> <a href="">Community Forum <span class="icon ion-arrow-right-c"></span></a> </h4> <p> Discuss and share ideas, hacks, and quesitons with others building with Ionic on the official Ionic Forum. Stop by and say Hello! </p> </div> <!-- /col-sm-6 col-b --> </div> <!-- /row ionic --> </div> <!-- /pre-footer --> <footer class="footer"> <div class="newsletter row"> <div class="col-sm-7"> <div class="newsletter-text">Stay in the loop with ionic!</div> <div class="sign-up">Sign up to receive emails on updates, features, and news on the framework.</div> </div> <form action="http://codiqa.createsend.com/t/t/s/jytylh/" method="post" class="input-group col-sm-5"> <input id="fieldEmail" name="cm-jytylh-jytylh" class="form-control" type="email" placeholder="Email" required /> <span class="input-group-btn"> <button class="btn btn-default" type="submit">Subscribe</button> </span> </form> </div> <p class="authors"> Created by <a href="https://twitter.com/maxlynch">@maxlynch</a>, <a href="">@adamdbradley</a>, and <a href="">@benjsperry</a>. Code licensed under <a href="">MIT</a>. Docs under <a href="">Apache 2</a>. </p> <nav class="base-links"> <a href="/docs/">Docs</a> &#183; <a href="/blog/">Blog</a> &#183; <a href="">Present Ionic</a> &#183; <a href="">Forum</a> &#183; <a href="">Contribute</a> &#183; <a href="">Ionicons</a> &#183; <a href="">Github</a> &#183; <a href="">Issues</a> &#183; <a href="">Jobs</a> </nav>
</footer> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<script src="http://ionicframework.com/js/site.js"></script> </body>
</html>
</body>
</html>

Fixed side menu like bootstrap and ionic documentation - Script Codes CSS Codes

.data-header {color: red;}
.data-header2 {color: blue;}
.data-header3 {color: green;}
.companyGrid {font-size: 10px;}
Fixed side menu like bootstrap and ionic documentation - Script Codes
Fixed side menu like bootstrap and ionic documentation - Script Codes
Home Page Home
Developer Lizz
Username lizz
Uploaded August 18, 2022
Rating 3
Size 6,684 Kb
Views 22,264
Do you need developer help for Fixed side menu like bootstrap and ionic documentation?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Lizz (lizz) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!