SlideShare a Scribd company logo
1 of 33
Download to read offline
Responsive	
  Web	
  Design	
  
or	
  
Mobile	
  App	
  
Joomla!Day™	
  Bangkok	
  2013	
  
Name: Supachai Teasakul!
Location: Bangkok, Thailand!
Position: Joomla Translation WG - Joomla.org, !
" "LaiThai Developer Team, !
" "Project Manager - Marvelic Engine Co.,Ltd.!
Web: !Marvelic.co.th!
Twitter: !@supa_chai!
การใช้งานและสถิติ	
  

46.4% ของผู้ใช้โทรศัพท์เป็นมาร์ทโฟน!
22.4% ของเจ้าของมาร์ทโฟนใช้ iPhone!
!
ในฝรั่งเศส จากผู้ที่มีมาร์ทโฟน!
!

90% ของผู้เข้าเยี่ยมชมเว็บไซต์ มาจากมาร์ทโฟน!
และ!

70% ได้เข้าไปดาวน์โหลดโปรแกรมมาใช้งาน!
การใช้งานและสถิติ	
  
บนอุปกรณ์มาร์ทโฟน!
ใช้แสดงผลข้อมูล!

60%"
!
และเป็นอุปกรณ์ที่เปิดใช้งาน!
มากขึ้นทุกวันในโลก!
h"p://www.eco-­‐conscient.com	
  
การออกแบบเว็บที่ตอบสนองได้	
  
มีชุดเครื่องมือ และเทคนิคในการจัดระเบียบข้อมูล จากพารามิเตอร์ของอุปกรณ์ !
(คอมพิวเตอร์ตรวจสอบ, มาร์ทโฟน, แท็บเล็ต, โทรทัศน์, ฯลฯ .)!

ภาพประกอบจากหนังสือที่ตีพิมพ์โดย Ethan Marcotte, 25 พฤษภาคม 2010!
การออกแบบเว็บที่ตอบสนองได้	
  

RWD จะมีอยู่ในเทมเพลตมากที่สุด ในรุ่น Joomla 2.5 และ natively ใน!
Joomla เทมเพลต 3.x!
การออกแบบเว็บที่ตอบสนองได้	
  

RWD ในส่วนติดต่อของผู้ใช้ (หน้า) และ!
ผู้บริหาร (Back-end) Joomla 3.x!
การออกแบบเว็บที่ตอบสนองได้	
  

Joomla 3.x จะมี Bootstrap responsive framework ซึ่งประกอบไปด้วย CSS & JavaScript!
การออกแบบเว็บที่ตอบสนองได้	
  
ด้วย Bootstrap, เราเพียงเรียกใช้ CSS ด้วยคลาสที่ต้องการ เพื่อนำเสนอเนื้อหาของ
เราเพื่อให้ได้ผลลัพธ์เป็น responsive!

<img alt="Logo" class="visible-desktop" src="/images/logo.png">!
หันมาเขียน CSS	
  แบบ less	
  
จะทำให้สนุกขึ้นกว่าเดิม	
  

hAp://lesscss.org/	
  
The dynamic stylesheet language.!
ไฟล์.less = CSS valid + variables!
Variables
The dynamic stylesheet language.!
Mixins
The dynamic stylesheet language.!
Nested Rules
The dynamic stylesheet language.!
Functions  Operations
Preboot is a comprehensive and flexible collection of LESS
utilities. Its original variables and mixins became the precursor
to Bootstrap. Since then, it's all come full circle.!

Brief history!
Preboot was originally released in March 2011 under the name Bootstrap.less. Sensing the need for a larger
and more comprehensive framework, I copped the name and created Bootstrap based on the original
variables and mixins work here. To avoid obivous naming issues, I renamed this Preboot and essentially
didn't touch the project for two years.!
!

Fast forward two years and I'm backporting many of Bootstrap's variables and mixins back into Preboot as
v2.!
!

Disclaimer: Preboot v1 (Bootstrap.less) was released under a Creative Commons license and is still
available. Preboot 2 is now under MIT.!
!

Visit site : getpreboot.com!

Mark Otto!
Twitter : @mdo!

http://markdotto.com/ !
การออกแบบเว็บที่ตอบสนองได้	
  

นำเสนอผ่าน CSS3
ใส่ code ใน head ถึง /head ด้วย!
!
link href=mobile.css type=text/css media=screen and (max-device-width:480px) rel=stylesheet/!
การออกแบบเว็บที่ตอบสนองได้	
  

Source : http://www.splio.com/responsive/10_basic_tips_about_responsive_design_fr.pdf!
การออกแบบเว็บที่ตอบสนองได้	
  
Framework	
  templates	
  ที่นิยมใน	
  Joomla!	
  

• 
• 
• 
• 
• 
• 

Warp Framework!
Zen Grid Framework!
Helix Framework!
Morph framework!
Construct Template Framework!
Jyaml Framework!

• 
• 
• 
• 
• 
• 

JV Framework!
Vertex Framework!
Wright Framework!
Expose Framework!
YT Framework!
Leo Framework!
    

และอาจมีอีก...!
Design	
  for	
  Web	
  first	
  !	
  
Adjust	
  to	
  Mobile	
  
Supports	
  Mobile?	
  
Media	
  Viewport!	
  
Mobile	
  first	
  !	
  
Adjust	
  Media	
  Queries	
  
Adjust	
  Media	
  Queries	
  
/*	
  Large	
  desktop	
  */	
  	
  
@media	
  (min-­‐width:	
  1200px)	
  {	
  ...	
  }	
  	
  
	
  
/*	
  Portrait	
  tablet	
  to	
  landscape	
  and	
  desktop	
  */	
  	
  
@media	
  (min-­‐width:	
  768px)	
  and	
  (max-­‐width:	
  979px)	
  {	
  ...	
  }	
  	
  
	
  
/*	
  Landscape	
  phone	
  to	
  portrait	
  tablet	
  */	
  	
  
@media	
  (max-­‐width:	
  767px)	
  {	
  ...	
  }	
  	
  
	
  
/*	
  Landscape	
  phones	
  and	
  down	
  */	
  	
  
@media	
  (max-­‐width:	
  480px)	
  {	
  ...	
  }	
  
Site	
  with	
  mobile	
  version	
  
Configured subdomain: http://m.domainsite.com!
!
Advantages:
- Version optimized for faster loading time!
- SEO: caching mobile pages!
!
Make Your Website Work Across Multiple Devices:
http://www.google.com/think/multiscreen/!
Applica`ons	
  
iOS Development: Objective-C!
Android Development: Java!
!
!
Or!

hAp://phonegap.com/	
  
SOLUTION: Develop HTML5!
and PhoneGap or Titanium!
PhoneGap: portability application on android, iOS, windows phone, Blackberry!
นอกเหนือจากการออกแบบเว็บไซต์ให้รองรับการ
แสดงผลหน้าจอแบบตอบสนองได้!
สิ่งที่ต้องทำถัดไปคือเรื่อง!

ความเร็วในการทำงาน
ตัวอย่างเช่น:	
  MOBILEJOOMLA.COM	
  
Mobile Joomla! is the best way to display your Joomla! site on
iPhone, iPad, Android  more w/ up to 4x better performance
compared to responsive and other mobile templates.!

http://www.mobilejoomla.com/!
Processing	
  images	
  
.htaccess	
  +	
  	
  file	
  php	
  =	
  adap`ve	
  image	
  

Adaptive Images detects your visitor's screen size and automatically creates, caches, and delivers device
appropriate re-scaled versions of your web page's embeded HTML images. No mark-up changes needed. It is
intended for use with Responsive Designs and to be combined with Fluid Image techniques.!
http://adaptive-images.com/!
Processing	
  images	
  
Photo	
  galleries	
  with	
  adap`ve	
  picture:	
  OZIO	
  Gallery	
  
iPhone
Nokia
iPad	
  
PC 	
  

	
  320x480 	
  
	
  360x640 	
  
	
  768x1024
	
  
	
  normale 	
  

	
  150px	
  ×	
  225px	
  
	
  177px	
  ×	
  265px	
  
	
  448px	
  ×	
  673px	
  
	
  641px	
  ×	
  962px	
  

http://www.opensourcesolutions.es/en/ext/ozio-gallery.html!

	
  14kb	
  
	
  19kb	
  
	
  98kb	
  
	
  170kb	
  
Useful	
  links	
  
•  Test: http://emulateurmobile.com/!
•  Re-Tester: Module user agent for Firefox!
•  Observe: - stats of your sites over several years: !
http://httparchive.org/!
!
Probe:
•  Integrate an offline cache html5 for navigation off line on your
mobile: http://appcache.rawkes.com/!
QUESTIONS?	
  
Thank	
  You	
  

More Related Content

Viewers also liked

Building and Maintaining Open Source Project - YWC14
Building and Maintaining Open Source Project - YWC14Building and Maintaining Open Source Project - YWC14
Building and Maintaining Open Source Project - YWC14Akarawuth Tamrareang
 
OWASP Thailand 2016 - Joomla Security
OWASP Thailand 2016 - Joomla Security OWASP Thailand 2016 - Joomla Security
OWASP Thailand 2016 - Joomla Security Akarawuth Tamrareang
 
การเตรียมตัวสร้างร้านค้าออนไลน์
การเตรียมตัวสร้างร้านค้าออนไลน์การเตรียมตัวสร้างร้านค้าออนไลน์
การเตรียมตัวสร้างร้านค้าออนไลน์Akarawuth Tamrareang
 
Java script เบื้องต้น
Java script เบื้องต้นJava script เบื้องต้น
Java script เบื้องต้นSamart Phetdee
 
สร้าง Style ด้วย css 3
สร้าง Style ด้วย css 3สร้าง Style ด้วย css 3
สร้าง Style ด้วย css 3Samart Phetdee
 
เขียนเว็บไซต์ด้วย Html 5
เขียนเว็บไซต์ด้วย Html 5เขียนเว็บไซต์ด้วย Html 5
เขียนเว็บไซต์ด้วย Html 5Samart Phetdee
 
Bootstrap 3 สำหรับมือใหม่ | CloudCourse.io
Bootstrap 3 สำหรับมือใหม่ | CloudCourse.ioBootstrap 3 สำหรับมือใหม่ | CloudCourse.io
Bootstrap 3 สำหรับมือใหม่ | CloudCourse.ioThapwaris Chinsirirathkul
 
แนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละ
แนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละแนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละ
แนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละWithoon Wangsa-Nguankit
 

Viewers also liked (13)

Building and Maintaining Open Source Project - YWC14
Building and Maintaining Open Source Project - YWC14Building and Maintaining Open Source Project - YWC14
Building and Maintaining Open Source Project - YWC14
 
eCommerce extensions for joomla 3.x
eCommerce extensions for joomla 3.xeCommerce extensions for joomla 3.x
eCommerce extensions for joomla 3.x
 
OWASP Thailand 2016 - Joomla Security
OWASP Thailand 2016 - Joomla Security OWASP Thailand 2016 - Joomla Security
OWASP Thailand 2016 - Joomla Security
 
การเตรียมตัวสร้างร้านค้าออนไลน์
การเตรียมตัวสร้างร้านค้าออนไลน์การเตรียมตัวสร้างร้านค้าออนไลน์
การเตรียมตัวสร้างร้านค้าออนไลน์
 
Digital Content for Business
Digital Content for BusinessDigital Content for Business
Digital Content for Business
 
Java script เบื้องต้น
Java script เบื้องต้นJava script เบื้องต้น
Java script เบื้องต้น
 
Php training
Php trainingPhp training
Php training
 
สร้าง Style ด้วย css 3
สร้าง Style ด้วย css 3สร้าง Style ด้วย css 3
สร้าง Style ด้วย css 3
 
เขียนเว็บไซต์ด้วย Html 5
เขียนเว็บไซต์ด้วย Html 5เขียนเว็บไซต์ด้วย Html 5
เขียนเว็บไซต์ด้วย Html 5
 
Bootstrap 3 สำหรับมือใหม่ | CloudCourse.io
Bootstrap 3 สำหรับมือใหม่ | CloudCourse.ioBootstrap 3 สำหรับมือใหม่ | CloudCourse.io
Bootstrap 3 สำหรับมือใหม่ | CloudCourse.io
 
แนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละ
แนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละแนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละ
แนะนำ HTML5 แบบอ่านจบต้องรู้บ้างแหละ
 
การสร้างเว็บด้วย Bootstrap framework
การสร้างเว็บด้วย Bootstrap frameworkการสร้างเว็บด้วย Bootstrap framework
การสร้างเว็บด้วย Bootstrap framework
 
Bootstrap 3 Basic - Bangkok WordPress Meetup
Bootstrap 3 Basic - Bangkok WordPress MeetupBootstrap 3 Basic - Bangkok WordPress Meetup
Bootstrap 3 Basic - Bangkok WordPress Meetup
 

Similar to Responsive Web Design or Mobile App

Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)
Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)
Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)Kanda Runapongsa Saikaew
 
Security CMS - Opensoure2Day event
Security CMS - Opensoure2Day eventSecurity CMS - Opensoure2Day event
Security CMS - Opensoure2Day eventAkarawuth Tamrareang
 
ศิราภรณ์ วังคีรี
ศิราภรณ์    วังคีรีศิราภรณ์    วังคีรี
ศิราภรณ์ วังคีรีSiraporn Wangkeeree
 
Joomla present at Bangkok University
Joomla present at Bangkok UniversityJoomla present at Bangkok University
Joomla present at Bangkok UniversityAkarawuth Tamrareang
 
Digital Innovative Thinking and Coding
Digital Innovative Thinking and CodingDigital Innovative Thinking and Coding
Digital Innovative Thinking and CodingMayuree Srikulwong
 
โปรแกรมประยุกต์บนเว็บ
โปรแกรมประยุกต์บนเว็บโปรแกรมประยุกต์บนเว็บ
โปรแกรมประยุกต์บนเว็บanuchit025
 
นุ๊ก
นุ๊กนุ๊ก
นุ๊กsirinet
 
หมวย
หมวยหมวย
หมวยsirinet
 
ดรีม
ดรีมดรีม
ดรีมsirinet
 
หมวย
หมวยหมวย
หมวยsirinet
 
หวิว
หวิวหวิว
หวิวViewMik
 
รออกแบบเว็บไซต์
รออกแบบเว็บไซต์รออกแบบเว็บไซต์
รออกแบบเว็บไซต์sirinet
 

Similar to Responsive Web Design or Mobile App (20)

Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)
Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)
Mobile Application for Education (โมบายแอปพลิเคชันเพื่อการศึกษา)
 
Security CMS - Opensoure2Day event
Security CMS - Opensoure2Day eventSecurity CMS - Opensoure2Day event
Security CMS - Opensoure2Day event
 
Unit2
Unit2Unit2
Unit2
 
ศิราภรณ์ วังคีรี
ศิราภรณ์    วังคีรีศิราภรณ์    วังคีรี
ศิราภรณ์ วังคีรี
 
Joomla present at Bangkok University
Joomla present at Bangkok UniversityJoomla present at Bangkok University
Joomla present at Bangkok University
 
งานคอม
งานคอมงานคอม
งานคอม
 
งานคอม
งานคอมงานคอม
งานคอม
 
งานคอม
งานคอมงานคอม
งานคอม
 
Digital Innovative Thinking and Coding
Digital Innovative Thinking and CodingDigital Innovative Thinking and Coding
Digital Innovative Thinking and Coding
 
Joomla NetDesign2
Joomla NetDesign2Joomla NetDesign2
Joomla NetDesign2
 
โปรแกรมประยุกต์บนเว็บ
โปรแกรมประยุกต์บนเว็บโปรแกรมประยุกต์บนเว็บ
โปรแกรมประยุกต์บนเว็บ
 
(บทที่ 5)
(บทที่ 5)(บทที่ 5)
(บทที่ 5)
 
นุ๊ก
นุ๊กนุ๊ก
นุ๊ก
 
โบ
โบโบ
โบ
 
Best
BestBest
Best
 
หมวย
หมวยหมวย
หมวย
 
ดรีม
ดรีมดรีม
ดรีม
 
หมวย
หมวยหมวย
หมวย
 
หวิว
หวิวหวิว
หวิว
 
รออกแบบเว็บไซต์
รออกแบบเว็บไซต์รออกแบบเว็บไซต์
รออกแบบเว็บไซต์
 

Responsive Web Design or Mobile App