SlideShare a Scribd company logo
Designing Responsive
IBM i Web Applications
Presented by:
Chelsea Fenton
Senior Web Application Developer
Fresche Solutions
October 2017
2Fresche Solutions | BCD - looksoftware - Quadrant
Topics
■ What is Responsive Web Design?
■ Introduction to Bootstrap
■ How you can use Bootstrap
■ How to install Bootstrap on IBM i
Fresche Solutions | BCD - looksoftware - Quadrant
What is Responsive Web Design?
4Fresche Solutions | BCD - looksoftware - Quadrant
Make web pages look good on all devices
Responsive Web Design
5Fresche Solutions | BCD - looksoftware - Quadrant
What is Responsive Web Design
■ Content responds to device size
■ Uses CSS and HTML
■ Hide, move, stack, resize
■ Grid Layout
■ One code base
Fresche Solutions | BCD - looksoftware - Quadrant
Live Example
https://www.wengercorp.com/audience-seating/index.php
7Fresche Solutions | BCD - looksoftware - Quadrant
CSS Media Queries
■ Dimensions
@media (max-width: 480px){
.box{ width: 100%; }
}
■Media Type
@media print {
.printIcon { display: none; }
}
8Fresche Solutions | BCD - looksoftware - Quadrant
B2B eCommerce on IBM i
https://www.taindustrial.com/
9Fresche Solutions | BCD - looksoftware - Quadrant
IBM i Dashboard
10Fresche Solutions | BCD - looksoftware - Quadrant
IBM i Document Portal
11Fresche Solutions | BCD - looksoftware - Quadrant
Key Challenges
■ User Experience
■ Longer Development
■ Large Tables Of Data
■ Balance of feature rich vs fast paced experience
12Fresche Solutions | BCD - looksoftware - Quadrant
Alternatives?
■ Desktop only
■ Mobile only
■ Separate
■ Native Mobile App
Fresche Solutions | BCD - looksoftware - Quadrant
Introduction to Bootstrap
14Fresche Solutions | BCD - looksoftware - Quadrant
What is Bootstrap
■ Most popular HTML, CSS, and JS framework for
developing responsive web applications
■ Build sleek sites quickly and easily
■ Single code base
■ Free Open Source
15Fresche Solutions | BCD - looksoftware - Quadrant
CSS Styles and Components
16Fresche Solutions | BCD - looksoftware - Quadrant
CSS Styles and Components
17Fresche Solutions | BCD - looksoftware - Quadrant
JavaScript and Plug-ins
18Fresche Solutions | BCD - looksoftware - Quadrant
Forms
19Fresche Solutions | BCD - looksoftware - Quadrant
Grid Layout
20Fresche Solutions | BCD - looksoftware - Quadrant
Grid Layout
21Fresche Solutions | BCD - looksoftware - Quadrant
Using Grid and Media Queries
1. col-md-12
2. col-md-6 3. col-md-6
4. col-md-4 5. col-md-4 6. col-md-4
MD Screen
3. col-sm-6
1. col-sm-12
2. col-sm-12
4. col-sm-6
5. col-sm-12
SM Screen
<div class=”col-md-12 col-sm-12” >...</div>
<div class=”col-md-6 col-sm-12” >...</div>
<div class=”col-md-6 col-sm-6” >...</div>
<div class=”col-md-4 col-sm-6” >...</div>
<div class=”col-md-4 col-sm-12 ”>...</div>
<div class=”col-md-4 hidden-sm”>...</div>
22Fresche Solutions | BCD - looksoftware - Quadrant
Mobile First
When you page is viewed at 768px or more
767px or less
23Fresche Solutions | BCD - looksoftware - Quadrant
Starter Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<h1>Hello, world!</h1>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
24Fresche Solutions | BCD - looksoftware - Quadrant
Navigation Bar
25Fresche Solutions | BCD - looksoftware - Quadrant
Design Page Layout
26Fresche Solutions | BCD - looksoftware - Quadrant
Other Useful Media Queries
27Fresche Solutions | BCD - looksoftware - Quadrant
Buttons
28Fresche Solutions | BCD - looksoftware - Quadrant
Form
29Fresche Solutions | BCD - looksoftware - Quadrant
Other Advantages
■ Popular
■ Saves Time
■ What Other Platforms Use
■ Cross Browser
■ Attract New Developers
30Fresche Solutions | BCD - looksoftware - Quadrant
Themes
https://bootswatch.com/
https://www.bootstrap-live-customizer.com/
31Fresche Solutions | BCD - looksoftware - Quadrant
■ http://getbootstrap.com/
■ https://bootswatch.com/
■ http://builtwithbootstrap.com/
■ https://wrapbootstrap.com
■ http://www.w3schools.com/bootstrap/
■ http://startbootstrap.com/bootstrap-resources/
Resources
32Fresche Solutions | BCD - looksoftware - Quadrant
Bootstrap 4
■ Removed xs from the lowest breakpoint col-6 instead of col-xs-6 covers all
■ Dropped IE8 and iOS 6 support. v4 is now only IE9+ and iOS 7+
■ Added a new grid tier for ~480px and below
■ Dropped the Glyphicons icon font
■ Renamed some classes
■ https://v4-alpha.getbootstrap.com/migration/
Fresche Solutions | BCD - looksoftware - Quadrant
How to install Bootstrap on IBM i
34Fresche Solutions | BCD - looksoftware - Quadrant
Download
■Bootstrap offers several ways to download and
install its package - http://getbootstrap.com/
▶ npm install bootstrap@3
▶ composer require twbs/bootstrap
▶ bower install bootstrap
▶ download directly from their site
■you will receive a package of javascript, css and font
files
35Fresche Solutions | BCD - looksoftware - Quadrant
Install
■Upload these into your project folder on the IFS
■Bootstrap also required jquery https://jquery.com/
so download and upload these files as well
■Bootstrap 4 beta also requires Popper
https://popper.js.org/
36Fresche Solutions | BCD - looksoftware - Quadrant
Install
■Add Apache directives so your programs can access
these files
■ AliasMatch /(.*)$ /path/to/root/$1
■ <Directory /path/to/root>
Order allow,deny
Allow from all
</Directory>
Questions
Chelsea Fenton
chelsea.fenton@freschesolutions.com
www.freschesolutions.com

More Related Content

Similar to Designing responsive ibm i web applications

Responsive Web Design On Student's day
Responsive Web Design On Student's day Responsive Web Design On Student's day
Responsive Web Design On Student's day psophy
 
6 css week12 2020 2021 for g10
6 css week12 2020 2021 for g106 css week12 2020 2021 for g10
6 css week12 2020 2021 for g10
Osama Ghandour Geris
 
Using a CSS Framework
Using a CSS FrameworkUsing a CSS Framework
Using a CSS Framework
Gareth Saunders
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
Nathan Smith
 
2009_09_11_Grid960
2009_09_11_Grid9602009_09_11_Grid960
2009_09_11_Grid960LightSpeed
 
Responsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needsResponsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needs
SEGIC
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
psophy
 
Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3Zoe Gillenwater
 
Best Practices - By Lofi Dewanto
Best Practices - By Lofi DewantoBest Practices - By Lofi Dewanto
Best Practices - By Lofi Dewanto
GWTcon
 
Creating a Business Oriented UI in APEX
Creating a Business Oriented UI in APEXCreating a Business Oriented UI in APEX
Creating a Business Oriented UI in APEX
Enkitec
 
SPFx- A modern development model for SharePoint
SPFx- A modern development model  for SharePointSPFx- A modern development model  for SharePoint
SPFx- A modern development model for SharePoint
Kirti Prajapati
 
NewBCamp08: Intro to Web Standards
NewBCamp08: Intro to Web StandardsNewBCamp08: Intro to Web Standards
NewBCamp08: Intro to Web Standards
Adam Darowski
 
Blueprint css framework
Blueprint css frameworkBlueprint css framework
Blueprint css framework
Techsailor
 
EnterJS 2015 - Continuous Integration for Frontend Code
EnterJS 2015 - Continuous Integration for Frontend CodeEnterJS 2015 - Continuous Integration for Frontend Code
EnterJS 2015 - Continuous Integration for Frontend Code
Marcel Birkner
 
Morden F2E Education - Think of Progressive Web Apps
Morden F2E Education - Think of Progressive Web AppsMorden F2E Education - Think of Progressive Web Apps
Morden F2E Education - Think of Progressive Web Apps
Caesar Chi
 
Angularjs practical project experiences with javascript development in a bank
Angularjs practical project experiences with javascript development in a bankAngularjs practical project experiences with javascript development in a bank
Angularjs practical project experiences with javascript development in a bank
David Amend
 
20 Tips to Improving WordPress Website - for Beginners-Aus-2017
20 Tips to Improving WordPress Website - for Beginners-Aus-201720 Tips to Improving WordPress Website - for Beginners-Aus-2017
20 Tips to Improving WordPress Website - for Beginners-Aus-2017
TRB Design, Inc.
 
Web Design & UI/UX Bootcamp [Online & Offline] In Bangla
Web Design & UI/UX Bootcamp [Online & Offline] In BanglaWeb Design & UI/UX Bootcamp [Online & Offline] In Bangla
Web Design & UI/UX Bootcamp [Online & Offline] In Bangla
Stack Learner
 
Drupal Theming with CSS Frameworks (960grid)
Drupal Theming with CSS Frameworks (960grid)Drupal Theming with CSS Frameworks (960grid)
Drupal Theming with CSS Frameworks (960grid)Ryan Cross
 
Csun retrofitting anoosha&amp;sathish-2
Csun retrofitting anoosha&amp;sathish-2Csun retrofitting anoosha&amp;sathish-2
Csun retrofitting anoosha&amp;sathish-2
Sathish Kumar
 

Similar to Designing responsive ibm i web applications (20)

Responsive Web Design On Student's day
Responsive Web Design On Student's day Responsive Web Design On Student's day
Responsive Web Design On Student's day
 
6 css week12 2020 2021 for g10
6 css week12 2020 2021 for g106 css week12 2020 2021 for g10
6 css week12 2020 2021 for g10
 
Using a CSS Framework
Using a CSS FrameworkUsing a CSS Framework
Using a CSS Framework
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
 
2009_09_11_Grid960
2009_09_11_Grid9602009_09_11_Grid960
2009_09_11_Grid960
 
Responsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needsResponsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needs
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3
 
Best Practices - By Lofi Dewanto
Best Practices - By Lofi DewantoBest Practices - By Lofi Dewanto
Best Practices - By Lofi Dewanto
 
Creating a Business Oriented UI in APEX
Creating a Business Oriented UI in APEXCreating a Business Oriented UI in APEX
Creating a Business Oriented UI in APEX
 
SPFx- A modern development model for SharePoint
SPFx- A modern development model  for SharePointSPFx- A modern development model  for SharePoint
SPFx- A modern development model for SharePoint
 
NewBCamp08: Intro to Web Standards
NewBCamp08: Intro to Web StandardsNewBCamp08: Intro to Web Standards
NewBCamp08: Intro to Web Standards
 
Blueprint css framework
Blueprint css frameworkBlueprint css framework
Blueprint css framework
 
EnterJS 2015 - Continuous Integration for Frontend Code
EnterJS 2015 - Continuous Integration for Frontend CodeEnterJS 2015 - Continuous Integration for Frontend Code
EnterJS 2015 - Continuous Integration for Frontend Code
 
Morden F2E Education - Think of Progressive Web Apps
Morden F2E Education - Think of Progressive Web AppsMorden F2E Education - Think of Progressive Web Apps
Morden F2E Education - Think of Progressive Web Apps
 
Angularjs practical project experiences with javascript development in a bank
Angularjs practical project experiences with javascript development in a bankAngularjs practical project experiences with javascript development in a bank
Angularjs practical project experiences with javascript development in a bank
 
20 Tips to Improving WordPress Website - for Beginners-Aus-2017
20 Tips to Improving WordPress Website - for Beginners-Aus-201720 Tips to Improving WordPress Website - for Beginners-Aus-2017
20 Tips to Improving WordPress Website - for Beginners-Aus-2017
 
Web Design & UI/UX Bootcamp [Online & Offline] In Bangla
Web Design & UI/UX Bootcamp [Online & Offline] In BanglaWeb Design & UI/UX Bootcamp [Online & Offline] In Bangla
Web Design & UI/UX Bootcamp [Online & Offline] In Bangla
 
Drupal Theming with CSS Frameworks (960grid)
Drupal Theming with CSS Frameworks (960grid)Drupal Theming with CSS Frameworks (960grid)
Drupal Theming with CSS Frameworks (960grid)
 
Csun retrofitting anoosha&amp;sathish-2
Csun retrofitting anoosha&amp;sathish-2Csun retrofitting anoosha&amp;sathish-2
Csun retrofitting anoosha&amp;sathish-2
 

Recently uploaded

History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
laozhuseo02
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
3ipehhoa
 
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptxBridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Brad Spiegel Macon GA
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
natyesu
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
Gal Baras
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
3ipehhoa
 
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
Javier Lasa
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
laozhuseo02
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
ufdana
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Sanjeev Rampal
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
nirahealhty
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
keoku
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
3ipehhoa
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
Rogerio Filho
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
JungkooksNonexistent
 
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
eutxy
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
Arif0071
 
Comptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guideComptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guide
GTProductions1
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
JeyaPerumal1
 

Recently uploaded (20)

History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
 
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptxBridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
 
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
 
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
 
Comptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guideComptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guide
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
 

Designing responsive ibm i web applications

  • 1. Designing Responsive IBM i Web Applications Presented by: Chelsea Fenton Senior Web Application Developer Fresche Solutions October 2017
  • 2. 2Fresche Solutions | BCD - looksoftware - Quadrant Topics ■ What is Responsive Web Design? ■ Introduction to Bootstrap ■ How you can use Bootstrap ■ How to install Bootstrap on IBM i
  • 3. Fresche Solutions | BCD - looksoftware - Quadrant What is Responsive Web Design?
  • 4. 4Fresche Solutions | BCD - looksoftware - Quadrant Make web pages look good on all devices Responsive Web Design
  • 5. 5Fresche Solutions | BCD - looksoftware - Quadrant What is Responsive Web Design ■ Content responds to device size ■ Uses CSS and HTML ■ Hide, move, stack, resize ■ Grid Layout ■ One code base
  • 6. Fresche Solutions | BCD - looksoftware - Quadrant Live Example https://www.wengercorp.com/audience-seating/index.php
  • 7. 7Fresche Solutions | BCD - looksoftware - Quadrant CSS Media Queries ■ Dimensions @media (max-width: 480px){ .box{ width: 100%; } } ■Media Type @media print { .printIcon { display: none; } }
  • 8. 8Fresche Solutions | BCD - looksoftware - Quadrant B2B eCommerce on IBM i https://www.taindustrial.com/
  • 9. 9Fresche Solutions | BCD - looksoftware - Quadrant IBM i Dashboard
  • 10. 10Fresche Solutions | BCD - looksoftware - Quadrant IBM i Document Portal
  • 11. 11Fresche Solutions | BCD - looksoftware - Quadrant Key Challenges ■ User Experience ■ Longer Development ■ Large Tables Of Data ■ Balance of feature rich vs fast paced experience
  • 12. 12Fresche Solutions | BCD - looksoftware - Quadrant Alternatives? ■ Desktop only ■ Mobile only ■ Separate ■ Native Mobile App
  • 13. Fresche Solutions | BCD - looksoftware - Quadrant Introduction to Bootstrap
  • 14. 14Fresche Solutions | BCD - looksoftware - Quadrant What is Bootstrap ■ Most popular HTML, CSS, and JS framework for developing responsive web applications ■ Build sleek sites quickly and easily ■ Single code base ■ Free Open Source
  • 15. 15Fresche Solutions | BCD - looksoftware - Quadrant CSS Styles and Components
  • 16. 16Fresche Solutions | BCD - looksoftware - Quadrant CSS Styles and Components
  • 17. 17Fresche Solutions | BCD - looksoftware - Quadrant JavaScript and Plug-ins
  • 18. 18Fresche Solutions | BCD - looksoftware - Quadrant Forms
  • 19. 19Fresche Solutions | BCD - looksoftware - Quadrant Grid Layout
  • 20. 20Fresche Solutions | BCD - looksoftware - Quadrant Grid Layout
  • 21. 21Fresche Solutions | BCD - looksoftware - Quadrant Using Grid and Media Queries 1. col-md-12 2. col-md-6 3. col-md-6 4. col-md-4 5. col-md-4 6. col-md-4 MD Screen 3. col-sm-6 1. col-sm-12 2. col-sm-12 4. col-sm-6 5. col-sm-12 SM Screen <div class=”col-md-12 col-sm-12” >...</div> <div class=”col-md-6 col-sm-12” >...</div> <div class=”col-md-6 col-sm-6” >...</div> <div class=”col-md-4 col-sm-6” >...</div> <div class=”col-md-4 col-sm-12 ”>...</div> <div class=”col-md-4 hidden-sm”>...</div>
  • 22. 22Fresche Solutions | BCD - looksoftware - Quadrant Mobile First When you page is viewed at 768px or more 767px or less
  • 23. 23Fresche Solutions | BCD - looksoftware - Quadrant Starter Template <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 101 Template</title> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> </head> <body> <h1>Hello, world!</h1> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script> </body> </html>
  • 24. 24Fresche Solutions | BCD - looksoftware - Quadrant Navigation Bar
  • 25. 25Fresche Solutions | BCD - looksoftware - Quadrant Design Page Layout
  • 26. 26Fresche Solutions | BCD - looksoftware - Quadrant Other Useful Media Queries
  • 27. 27Fresche Solutions | BCD - looksoftware - Quadrant Buttons
  • 28. 28Fresche Solutions | BCD - looksoftware - Quadrant Form
  • 29. 29Fresche Solutions | BCD - looksoftware - Quadrant Other Advantages ■ Popular ■ Saves Time ■ What Other Platforms Use ■ Cross Browser ■ Attract New Developers
  • 30. 30Fresche Solutions | BCD - looksoftware - Quadrant Themes https://bootswatch.com/ https://www.bootstrap-live-customizer.com/
  • 31. 31Fresche Solutions | BCD - looksoftware - Quadrant ■ http://getbootstrap.com/ ■ https://bootswatch.com/ ■ http://builtwithbootstrap.com/ ■ https://wrapbootstrap.com ■ http://www.w3schools.com/bootstrap/ ■ http://startbootstrap.com/bootstrap-resources/ Resources
  • 32. 32Fresche Solutions | BCD - looksoftware - Quadrant Bootstrap 4 ■ Removed xs from the lowest breakpoint col-6 instead of col-xs-6 covers all ■ Dropped IE8 and iOS 6 support. v4 is now only IE9+ and iOS 7+ ■ Added a new grid tier for ~480px and below ■ Dropped the Glyphicons icon font ■ Renamed some classes ■ https://v4-alpha.getbootstrap.com/migration/
  • 33. Fresche Solutions | BCD - looksoftware - Quadrant How to install Bootstrap on IBM i
  • 34. 34Fresche Solutions | BCD - looksoftware - Quadrant Download ■Bootstrap offers several ways to download and install its package - http://getbootstrap.com/ ▶ npm install bootstrap@3 ▶ composer require twbs/bootstrap ▶ bower install bootstrap ▶ download directly from their site ■you will receive a package of javascript, css and font files
  • 35. 35Fresche Solutions | BCD - looksoftware - Quadrant Install ■Upload these into your project folder on the IFS ■Bootstrap also required jquery https://jquery.com/ so download and upload these files as well ■Bootstrap 4 beta also requires Popper https://popper.js.org/
  • 36. 36Fresche Solutions | BCD - looksoftware - Quadrant Install ■Add Apache directives so your programs can access these files ■ AliasMatch /(.*)$ /path/to/root/$1 ■ <Directory /path/to/root> Order allow,deny Allow from all </Directory>