Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Mobile Web Application 甘苦談
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
othree
October 27, 2013
Technology
6
1.8k
Mobile Web Application 甘苦談
othree
October 27, 2013
Tweet
Share
More Decks by othree
See All by othree
How GitHub Supports Vim License Detection, The Five Years Journey
othree
1
2.2k
WAT JavaScript Date
othree
3
2.2k
Modern HTML Email Development
othree
3
2.7k
MRT & GIT
othree
1
2.3k
YAJS.vim and Vim Syntax Highlight
othree
1
3k
Web Trends to 2015
othree
4
340
Transducer
othree
9
3.1k
HITCON 11 Photographer
othree
4
520
fetch is the new XHR
othree
6
3.6k
Other Decks in Technology
See All in Technology
GitLab Duo Agent Platform + Local LLMサービングで幸せになりたい
jyoshise
0
190
us-east-1 に障害が起きた時に、 ap-northeast-1 にどんな影響があるか 説明できるようになろう!
miu_crescent
PRO
13
3.9k
マネージャー版 "提案のレベル" を上げる
konifar
21
14k
トップマネジメントとコンピテンシーから考えるエンジニアリングマネジメント
zigorou
4
750
「ストレッチゾーンに挑戦し続ける」ことって難しくないですか? メンバーの持続的成長を支えるEMの環境設計
sansantech
PRO
3
390
Security Diaries of an Open Source IAM
ahus1
0
210
フルカイテン株式会社 エンジニア向け採用資料
fullkaiten
0
11k
楽しく学ぼう!コミュニティ入門 AWSと人が つむいできたストーリー
hiroramos4
PRO
1
160
新職業『オーケストレーター』誕生 — エージェント10体を同時に回すAgentOps
gunta
4
1.6k
型を書かないRuby開発への挑戦
riseshia
0
200
vLLM Community Meetup Tokyo #3 オープニングトーク
jpishikawa
0
210
AWS DevOps Agent vs SRE俺 / AWS DevOps Agent vs me, the SRE
sms_tech
3
380
Featured
See All Featured
The Pragmatic Product Professional
lauravandoore
37
7.2k
The Impact of AI in SEO - AI Overviews June 2024 Edition
aleyda
5
760
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
9.9k
Making the Leap to Tech Lead
cromwellryan
135
9.8k
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
280
How To Speak Unicorn (iThemes Webinar)
marktimemedia
1
400
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
190
Rebuilding a faster, lazier Slack
samanthasiow
85
9.4k
Believing is Seeing
oripsolob
1
73
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2.1k
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.1k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
Transcript
Mobile Web Application ⽢甘苦談 othree @ MOPCON 2013
me • @othree • MozTW member • PhD Candidate of
civil engineering • F2E at HTC • https://blog.othree.net/
• Front End related • Experience sharing • No code
listing
Why Mobile • We are HTC....
Mozilla Summit 2013
Mozilla Summit 2013
PM Says “We are going to support mobile browsers”
What We Thought • Web Standards rule the web •
Not big problem
Reality • Browser have bugs • Standard implementation not the
same • Ambiguous standards • Hard to debug on some browser • Any issue might be new, not like IE
Reality • Browser have bugs • Standard implementation not the
same • Ambiguous standards • Hard to debug on some browser • Any issue might be new, not like IE Survey
What browser you use on smartphone?
What browser you use on smartphone? b) You install browser
by yourself a) Default browser from your phone
Android Browser
Android Browser • No updates anymore • Google use Chrome
as new default • Still exists: HTC, Samsung Galaxy S3
Mozilla Summit 2013
• Have bugs, issues
S4 Chrome?
S4 Chrome?
None
Suggestion to Users • Use Chrome or Firefox or …
So...
So... Issues
Issues • No repaint • Ghost Click • Toggle location
bar will not trigger resize • preventDefault not work on touch event • HTML5 Video
Repaint • To save power, browser will reduce repaint •
It predicts best timing for repaint, what to repaint • Prediction might fail
If Not Repaint • Things will disappear, in wrong position...etc
Force Repaint • Access some attribute related to layout •
ex: offsetHeight
Ghost Click • Mobile device don’t have real ‘click’ event
• Simulate ‘click’ using touch events • ‘click’ has 300ms delay after ‘touchend’
Avoid Lag • Use ‘touchend’ • tap.js https://github.com/alexgibson/tap.js • fastbutton
https://developers.google.com/mobile/ articles/fast_buttons
But.. • Android Browser • Trigger simulated click on wrong
element
Demo
Location Bar • 3 states in Android Browser • show
• hide • pinned
Location Bar • 3 states in Android Browser • show
• hide • pinned
None
None
None
What’s the Deal • Window size changes • Trigger ‘resize’
event? • Android 2: Yes • Android 3: No http://www.quirksmode.org/dom/events/resize_mobile.html
Fix • Time Interval to check window size change •
200ms interval will cause video not play • Manuel trigger resize handler when window size might change
preventDefault • Can used to prevent user scroll web page
• Not work on HTC browser • Not a bug, its spec...
HTML5 Video • Loop not work • Play event not
reliable • Duration update issue • iPhone, iPod have different implementation
Loop • Video loop not work on all mobile browser
• But you can call `play()` on ‘ended’ event
Video Bugs • ‘play’, ‘playing’ event not reliable • Duration
have default value • Won't stop when buffer ready even if `pause()` were called
MOPCON 2013
pause() not work play() download buffer pause() buffer ready, play
playing play
RobustVideo • A video wrapper to fix issues above •
https://github.com/othree/robust-video
iPhone • Open native player to play HTML5 video
iPhone • Open native player to play HTML5 video
None
None
Limitation • Video needs visible to be able to play
• Poster will not used to render in web page • No video event is available
Limitation • Video needs visible to be able to play
• Poster will not used to render in web page • No video event is available
Tip • Video element outside of window • Tap img(poster)
to trigger `video.play()`
Tip • Video element outside of window • Tap img(poster)
to trigger `video.play()` <video> <img>
呼...
Next Time PM Says “We are going to support mobile
browsers”
We Say “Well, it takes x times longer to do
it.”
We Say “Well, it takes x times longer to do
it.” Mobile Debugging How to
Browsers • Safari • Chrome • Firefox/Opera • Android Browser
Safari • Enable Debug • Connect iDevice to your Mac
• Open Safari https://developer.apple.com/library/ios/documentation/AppleApplications/Reference/SafariWebContent/DebuggingSafarioniPhoneContent/DebuggingSafarioniPhoneContent.html
Chrome • Install the ADB Chrome extension • Install driver
of your device • Enable Debug • Connect device to PC/Mac https://developers.google.com/chrome-developer-tools/docs/remote-debugging
None
Firefox • https://hacks.mozilla.org/2012/08/remote- debugging-on-firefox-for-android/
Android Browser • Weinre http://people.apache.org/~pmuellr/weinre/ docs/latest/
None
None
None
None
None
Demo Q
Thanks