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
Desarrollo FrontEnd con JavaScript #04
Search
Gustavo Leon
February 08, 2013
Programming
2
110
Desarrollo FrontEnd con JavaScript #04
Gustavo Leon
February 08, 2013
Tweet
Share
More Decks by Gustavo Leon
See All by Gustavo Leon
Usando Preact - Una alternativa ligera a React
hpneo
0
270
Manejando Docker containers con Ruby y backticks
hpneo
0
350
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
480
Universal Web apps con JavaScript
hpneo
0
300
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
690
Xamarin
hpneo
1
290
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
110
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
62
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
82
Other Decks in Programming
See All in Programming
RDoc meets YARD
okuramasafumi
4
160
KessokuでDIでもgoroutineを活用する / Go Connect #6
mazrean
0
140
Protocol Buffersの型を超えて拡張性を得る / Beyond Protocol Buffers Types Achieving Extensibility
linyows
0
100
「手軽で便利」に潜む罠。 Popover API を WCAG 2.2の視点で安全に使うには
taitotnk
0
510
1から理解するWeb Push
dora1998
3
860
さようなら Date。 ようこそTemporal! 3年間先行利用して得られた知見の共有
8beeeaaat
1
610
OSS開発者という働き方
andpad
5
1.6k
奥深くて厄介な「改行」と仲良くなる20分
oguemon
1
350
More Approvers for Greater OSS and Japan Community
tkikuc
1
110
Laravel Boost 超入門
fire_arlo
2
180
AWS発のAIエディタKiroを使ってみた
iriikeita
1
150
モバイルアプリからWebへの横展開を加速した話_Claude_Code_実践術.pdf
kazuyasakamoto
0
300
Featured
See All Featured
How to Think Like a Performance Engineer
csswizardry
26
1.9k
The Language of Interfaces
destraynor
160
25k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3k
Designing for humans not robots
tammielis
253
25k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
185
54k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
RailsConf 2023
tenderlove
30
1.2k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
51
5.6k
Music & Morning Musume
bryan
46
6.8k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Transcript
#04 – history api / file api / websockets
None
window.history • Guarda las páginas visitadas y permite navegar entre
ellas. • También guarda el estado de la entrada actual.
pushState y replaceState • pushState : Crea una nueva entrada
en window.history. • replaceState : Reemplaza la última entrada del history.
onhashchange / onpopstate
Soporte
Soporte IE10 Chrome8+ / Safari5+ Firefox 4+ Opera 10.5+
None
File API • Permite manejar archivos sin necesidad de subirlos
a un servidor.
FileReader
Eventos 1. onloadstart 2. onprogress 3. onload 4. onloadend •
onerror • onabort
Soporte
Soporte IE10 Chrome13+ / Safari6+ Firefox 3.6+ Opera 11.1+
None
¿Cómo hacer que el servidor se comunique con el cliente?
WebSockets
Usos
Usos Chat Juegos multiplayer Notificaciones Social streams
Eventos • onopen • onclose • onmessage • onerror
Soporte
Soporte IE10 Chrome8+ / Safari5+ Firefox 4+ Opera 10.5+