Movatterモバイル変換


[0]ホーム

URL:


Ivano Malavolta, profile picture
Uploaded byIvano Malavolta
4,500 views

HTML5 and CSS3 Refresher

The document contains a large amount of HTML code, including elements such as headers, footers, navigation, articles, and multimedia sources like audio and video. It also includes JavaScript functions for geolocation and web worker processes, as well as CSS styling for various elements. Additionally, media queries are present for responsive design across different devices.

Embed presentation

Downloaded 116 times
•••
    –    –    –
•    –    –    –    –    –
–
••••••••••
•    –•    –•    –•    –
<!DOCTYPE html><html>  <head>     <title>Title</title>  </head>  <body>  …  </body></html>
••••••••••
•••
<header><footer><nav><section><article><aside>
http://bit.ly/JCnuQJ
<command><details><summary><meter><progress><figure><figcaption><mark><time><wbr>
data-getAttribute()
••••••••••

<input type="search"><input   type="number"><input   type="range"><input   type="color"><input   type="tel"><input   type="url"><input   type="email"><input   type="date"><input   type="month"><input   type="week"><input   type="time"><input   type="datetime"><input   type="datetime-local">
–          <input type="text“ autofocus>–    <input type="text“ placeholder=“your name”>
••••••••••
<audio><audio controls>    <source src="song.ogg" type="audio/ogg" />    <source src="song.mp3" type="audio/mpeg" />    Not Supported</audio>       sources 
play() pause() load() currentTime ended    volume…
<video><video width="320" height="240" controls>    <source src="movie.mp4" type="video/mp4" />    <source src="movie.ogg" type="video/ogg" />   Not Supported</video>       sources 
play() pause() load() currentTime ended    volume…
<video><iframe width="560" height="315"  src="http://www.youtube.com/embed/Wp20Sc8qPeo"  frameborder="0" allowfullscreen></iframe>
••••••••••
••••••••••
function getLocation() {   if(navigator.geolocation) {       navigator.geolocation.getCurrentPosition(showPosition);   } else {       console.log(„no geolocalization‟);   }}function showPosition(position) {   console.log(position.coords.latitude);   console.log(position.coords.longitude);}
•••••••••••
••••••••••

••••
••••••••••
••••••••••
    
••
var worker = new Worker(“worker.js”);
$(„#button‟).click(function(event) {      $(„#output‟).html(“starting”);      worker.postMessage(“start”);});worker.onmessage = function(event) {     $(„#output‟).html(event.data);}
onmessage = function(event) {    if(event.data === “start”) {          var result;          // do something with result          postMessage(result);    }}
••••••••
–––––––
••••••••
selector {     property: value;     property2: value2, value3;     ...}
body {   background-color: red;}div {   background-color: green;}
h1, h2, h3 {   background-color: red;}
div {  list-style-image: url(image.png);  list-style-position: inside;  list-style-style: circle;}
div {  background:url(img.png), url(img2.png);  background-size:80px 60px;  background-repeat:no-repeat;  background-origin:content-box;}
div {  background-color: blue;  background-color: rgba(0, 0, 255, 0.2);  background-color: hsla(240, 100%, 50%, 0.2);}
div {        background: -webkit-gradient(linear, right top, left                      bottom, from(red), green));}linear right-top left-bottom from to 
p {  color: grey;  letter-spacing: 5px;  text-align: center;  text-decoration: underline;  text-indent: 10px;  text-transform: capitalize;  word-spacing: 10px;}
p {  text-shadow: 2px 10px 5px #FF0000;  text-overflow: ellipsis;  word-wrap:break-word;}                         
••••••••
•    a { color: red; }•    #redLink { color: red; }•    redLink { color: red; }
•       •       •       •                      target•                           target=    "_blank“•               
•                            "https”•                           ".pdf”•                                          “mobile“•       •               •   
••••••••
div {  width: 100px;  height: 40px;  padding: 10px;  border: 5px solid gray;  margin: 10px;  border-radius: 10px;  box-shadow: 10px 10px 5px red;}
div {  border-image:url(border.png) 30 30 round;}
••••••••
div {  display: none;}
block•inline••inline-block•   –
div.hidden {  visibility: hidden;}visible, collapse, inherit
box:••               box-orient#div {  display: box;  box-orient: horizontal;}
display: boxbox-orientbox-direction
box-pack           box-orient: horizontal;           box-pack: end;
box-align            box-orient: horizontal;            box-align: center;
             widthbox-flex           #box1 {           width: 100px;           }           #box2 {           box-flex: 1;           }           #box3 {           box-flex: 2;           }
•••••
••••••••
@font-face {  font-family: NAME;  src: url(Dimbo.ttf);  font-weight: normal;  font-style: normal;}
NAMEdiv {  font-family: NAME;}
••••••••
•    –        all•    –•    –•    –
.imageThumbnail {  width; 200px;  transition: all ease-in 3s;}.zoomed {  position: absolute;  left: 0px;  top: 0px;  width: 480px;}$(„.imageThumbnail‟).addClass(„zoomed‟);
div {  animation: test 5s ease-in;}
 
@keyframes test{  0%   {background:   red; left:0px; top:0px;}  25% {background:    yellow; left:200px; top:0px;}  50% {background:    blue; left:200px; top:200px;}  75% {background:    green; left:0px; top:200px;}  100% {background:   red; left:0px; top:0px;}}
•    –    –•    –    –•    –    –
••••••••
••••
•    <link rel=“stylesheet”         href=“style.css” media=“screen” />•    @media screen {         div { color: red; }    }
••••
@media screen and orientation: portrait
@media screen and (max-device-width: 480px){  /* your style */}
@media screen and (color),       handheld and (color) {    /* your style */}
@media not (width:480px) {  /* your style */}
@media only screen  and (min-device-width : 320px)  and (max-device-width : 480px) {      /* Styles */}
@media only screen and -webkit-min-device-pixel-ratio: 2@media only screen and  (device-width: 768px) and (orientation: landscape)@media only screen and  (min-device-width: 320px) and (max-device-width: 480px)
•    –    –•    –    –
•    –•    –•    –
•    –•
HTML5 and CSS3 Refresher
HTML5 and CSS3 Refresher

Recommended

PPTX
CSS: A Slippery Slope to the Backend
 
PDF
CSS3 Refresher
PDF
Emmet cheat-sheet
PPTX
Jquery introduction
PDF
Jina Bolton
PDF
Jquery In Rails
PPTX
Jquery-overview
PDF
PhoneGap: Local Storage
PDF
Introduzione JQuery
PDF
Make your own wp cli command in 10min
KEY
JQuery In Rails
PPTX
Fact, Fiction, and FP
PDF
HTML5 workshop, forms
PDF
The Dom Scripting Toolkit J Query
KEY
Learning How To Use Jquery #3
PDF
RubyBarCamp “Полезные gems и plugins”
PDF
ApacheCon NA11 - Apache Celix, Universal OSGi?
PDF
Learning jQuery made exciting in an interactive session by one of our team me...
PDF
Node.js - Demnächst auf einem Server in Ihrer Nähe
PDF
Accelerated Native Mobile Development with the Ti gem
PDF
Crowdsourcing with Django
PDF
Automatically Spotting Cross-language Relations
PPTX
jQuery from the very beginning
PDF
Shibuya.js Lightning Talks
PDF
Jqeury ajax plugins
PPTX
Lenses
PDF
Shortcodes In-Depth
PDF
Rediscovering #"button" role="switch" aria-checked="false" aria-label="Save Rediscovering #" aria-haspopup="dialog" aria-controls=":R6rp69r6:" popovertarget=":R6rp69r6:">
PDF
Mobile geolocation and mapping
PDF
Local data storage for mobile apps

More Related Content

PPTX
CSS: A Slippery Slope to the Backend
 
PDF
CSS3 Refresher
PDF
Emmet cheat-sheet
PPTX
Jquery introduction
PDF
Jina Bolton
PDF
Jquery In Rails
PPTX
Jquery-overview
PDF
PhoneGap: Local Storage
CSS: A Slippery Slope to the Backend
 
CSS3 Refresher
Emmet cheat-sheet
Jquery introduction
Jina Bolton
Jquery In Rails
Jquery-overview
PhoneGap: Local Storage

What's hot

PDF
Introduzione JQuery
PDF
Make your own wp cli command in 10min
KEY
JQuery In Rails
PPTX
Fact, Fiction, and FP
PDF
HTML5 workshop, forms
PDF
The Dom Scripting Toolkit J Query
KEY
Learning How To Use Jquery #3
PDF
RubyBarCamp “Полезные gems и plugins”
PDF
ApacheCon NA11 - Apache Celix, Universal OSGi?
PDF
Learning jQuery made exciting in an interactive session by one of our team me...
PDF
Node.js - Demnächst auf einem Server in Ihrer Nähe
PDF
Accelerated Native Mobile Development with the Ti gem
PDF
Crowdsourcing with Django
PDF
Automatically Spotting Cross-language Relations
PPTX
jQuery from the very beginning
PDF
Shibuya.js Lightning Talks
PDF
Jqeury ajax plugins
PPTX
Lenses
PDF
Shortcodes In-Depth
PDF
Rediscovering #"button" role="switch" aria-checked="false" aria-label="Save Rediscovering #" aria-haspopup="dialog" aria-controls=":R3dkcla9r6:" popovertarget=":R3dkcla9r6:">
Introduzione JQuery
Make your own wp cli command in 10min
JQuery In Rails
Fact, Fiction, and FP
HTML5 workshop, forms
The Dom Scripting Toolkit J Query
Learning How To Use Jquery #3
RubyBarCamp “Полезные gems и plugins”
ApacheCon NA11 - Apache Celix, Universal OSGi?
Learning jQuery made exciting in an interactive session by one of our team me...
Node.js - Demnächst auf einem Server in Ihrer Nähe
Accelerated Native Mobile Development with the Ti gem
Crowdsourcing with Django
Automatically Spotting Cross-language Relations
jQuery from the very beginning
Shibuya.js Lightning Talks
Jqeury ajax plugins
Lenses
Shortcodes In-Depth
Rediscovering #"button" role="switch" aria-checked="false" aria-label="Save Rediscovering #" aria-haspopup="dialog" aria-controls=":R3ehkla9r6:" popovertarget=":R3ehkla9r6:">

Viewers also liked

PDF
Mobile geolocation and mapping
PDF
Local data storage for mobile apps
PDF
Handlebars & Require JS
PPTX
Presentation about html5 css3
 
PDF
Html5 i css3
PPTX
(Fast) Introduction to HTML & CSS
PDF
[2016/2017] RESEARCH in software engineering
PDF
Modeling behaviour via UML state machines [Software Modeling] [Computer Scie...
PDF
Sitemaps & Wireframing
PDF
Javascript and jQuery for Mobile
PDF
PhoneGap
PDF
CSS Refresher
PDF
PhoneGap: Accessing Device Capabilities
PDF
HTML with a little CSS
PDF
Backbone JS for mobile apps
PDF
Backbone.js
PDF
Apache Cordova APIs version 4.3.0
PDF
Mobile Apps Development: Technological strategies and Monetization
PDF
The Mobile ecosystem, Context & Strategies
PDF
UI Design Patterns for Mobile Apps
Mobile geolocation and mapping
Local data storage for mobile apps
Handlebars & Require JS
Presentation about html5 css3
 
Html5 i css3
(Fast) Introduction to HTML & CSS
[2016/2017] RESEARCH in software engineering
Modeling behaviour via UML state machines [Software Modeling] [Computer Scie...
Sitemaps & Wireframing
Javascript and jQuery for Mobile
PhoneGap
CSS Refresher
PhoneGap: Accessing Device Capabilities
HTML with a little CSS
Backbone JS for mobile apps
Backbone.js
Apache Cordova APIs version 4.3.0
Mobile Apps Development: Technological strategies and Monetization
The Mobile ecosystem, Context & Strategies
UI Design Patterns for Mobile Apps

Similar to HTML5 and CSS3 Refresher

PDF
Compass And Sass(Tim Riley)
PDF
Think Vitamin CSS
PDF
CSS3: Simply Responsive
PPTX
HTML and CSS part 3
PDF
Fewd week7 slides
PDF
HTML5 and CSS3: Exploring Mobile Possibilities - London Ajax Mobile Event
PDF
HTML5 and CSS3 – exploring mobile possibilities - Frontend Conference Zürich
PDF
Accelerated Stylesheets
KEY
HTML5, CSS3, and other fancy buzzwords
PDF
Pinkoi Mobile Web
PDF
Great Responsive-ability Web Design
PDF
The Future of CSS Layout
PPTX
Html5 on Mobile(For Developer)
PPT
The Mobile Development Landscape
PDF
Please use these instructions to help. Please only edit the CSS, and.pdf
PDF
Responsive websites. Toolbox
PDF
follow theses instructions and work on the page Chapter07pr.pdf
PDF
Media queries
KEY
Sass Essentials at Mobile Camp LA
PDF
Devon 2011-f-1 반응형 웹 디자인
Compass And Sass(Tim Riley)
Think Vitamin CSS
CSS3: Simply Responsive
HTML and CSS part 3
Fewd week7 slides
HTML5 and CSS3: Exploring Mobile Possibilities - London Ajax Mobile Event
HTML5 and CSS3 – exploring mobile possibilities - Frontend Conference Zürich
Accelerated Stylesheets
HTML5, CSS3, and other fancy buzzwords
Pinkoi Mobile Web
Great Responsive-ability Web Design
The Future of CSS Layout
Html5 on Mobile(For Developer)
The Mobile Development Landscape
Please use these instructions to help. Please only edit the CSS, and.pdf
Responsive websites. Toolbox
follow theses instructions and work on the page Chapter07pr.pdf
Media queries
Sass Essentials at Mobile Camp LA
Devon 2011-f-1 반응형 웹 디자인

More from Ivano Malavolta

PDF
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
PDF
[2017/2018] AADL - Architecture Analysis and Design Language
PDF
[2017/2018] Introduction to Software Architecture
PDF
The Green Lab - Research cocktail @Vrije Universiteit Amsterdam (October 2020)
PDF
Software sustainability and Green IT
PDF
[2017/2018] Architectural languages
PDF
Requirements engineering with UML [Software Design] [Computer Science] [Vrije...
PDF
Object-oriented design patterns in UML [Software Design] [Computer Science] [...
PDF
Modeling behaviour via UML state machines [Software Design] [Computer Science...
PDF
Modeling objects interaction via UML sequence diagrams [Software Design] [Com...
PDF
Reconstructing microservice-based architectures
PDF
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
PDF
Modeling and abstraction, software development process [Software Design] [Com...
PDF
[2017/2018] Agile development
PDF
Structure modeling with UML [Software Design] [Computer Science] [Vrije Unive...
PDF
Navigation-aware and Personalized Prefetching of Network Requests in Android ...
PDF
How Maintainability Issues of Android Apps Evolve [ICSME 2018]
PDF
Collaborative Model-Driven Software Engineering: a Classification Framework a...
PDF
The H2020 experience
PDF
Experimenting on Mobile Apps Quality - a tale about Energy, Performance, and ...
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
[2017/2018] AADL - Architecture Analysis and Design Language
[2017/2018] Introduction to Software Architecture
The Green Lab - Research cocktail @Vrije Universiteit Amsterdam (October 2020)
Software sustainability and Green IT
[2017/2018] Architectural languages
Requirements engineering with UML [Software Design] [Computer Science] [Vrije...
Object-oriented design patterns in UML [Software Design] [Computer Science] [...
Modeling behaviour via UML state machines [Software Design] [Computer Science...
Modeling objects interaction via UML sequence diagrams [Software Design] [Com...
Reconstructing microservice-based architectures
Conducting Experiments on the Software Architecture of Robotic Systems (QRARS...
Modeling and abstraction, software development process [Software Design] [Com...
[2017/2018] Agile development
Structure modeling with UML [Software Design] [Computer Science] [Vrije Unive...
Navigation-aware and Personalized Prefetching of Network Requests in Android ...
How Maintainability Issues of Android Apps Evolve [ICSME 2018]
Collaborative Model-Driven Software Engineering: a Classification Framework a...
The H2020 experience
Experimenting on Mobile Apps Quality - a tale about Energy, Performance, and ...

Recently uploaded

PDF
GPUS and How to Program Them by Manya Bansal
PDF
The year in review - MarvelClient in 2025
DOCX
iRobot Post‑Mortem and Alternative Paths - Discussion Document for Boards and...
PDF
DevFest El Jadida 2025 - Product Thinking
PDF
Making Sense of Raster: From Bit Depth to Better Workflows
PPTX
wob-report.pptxwob-report.pptxwob-report.pptx
PDF
Security Technologys: Access Control, Firewall, VPN
PDF
Session 1 - Solving Semi-Structured Documents with Document Understanding
PDF
Vibe Coding vs. Spec-Driven Development [Free Meetup]
PDF
Internet_of_Things_IoT_for_Next_Generation_Smart_Systems_Utilizing.pdf
PDF
Usage Control for Process Discovery through a Trusted Execution Environment
PDF
December Patch Tuesday
 
PPTX
Unit-4-ARTIFICIAL NEURAL NETWORKS.pptx ANN ppt Artificial neural network
PPT
software-security-intro in information security.ppt
PDF
Energy Storage Landscape Clean Energy Ministerial
PDF
Decoding the DNA: The Digital Networks Act, the Open Internet, and IP interco...
PDF
TrustArc Webinar - Looking Ahead: The 2026 Privacy Landscape
PDF
Six Shifts For 2026 (And The Next Six Years)
PPTX
From Backup to Resilience: How MSPs Are Preparing for 2026
 
PPTX
AI's Impact on Cybersecurity - Challenges and Opportunities
GPUS and How to Program Them by Manya Bansal
The year in review - MarvelClient in 2025
iRobot Post‑Mortem and Alternative Paths - Discussion Document for Boards and...
DevFest El Jadida 2025 - Product Thinking
Making Sense of Raster: From Bit Depth to Better Workflows
wob-report.pptxwob-report.pptxwob-report.pptx
Security Technologys: Access Control, Firewall, VPN
Session 1 - Solving Semi-Structured Documents with Document Understanding
Vibe Coding vs. Spec-Driven Development [Free Meetup]
Internet_of_Things_IoT_for_Next_Generation_Smart_Systems_Utilizing.pdf
Usage Control for Process Discovery through a Trusted Execution Environment
December Patch Tuesday
 
Unit-4-ARTIFICIAL NEURAL NETWORKS.pptx ANN ppt Artificial neural network
software-security-intro in information security.ppt
Energy Storage Landscape Clean Energy Ministerial
Decoding the DNA: The Digital Networks Act, the Open Internet, and IP interco...
TrustArc Webinar - Looking Ahead: The 2026 Privacy Landscape
Six Shifts For 2026 (And The Next Six Years)
From Backup to Resilience: How MSPs Are Preparing for 2026
 
AI's Impact on Cybersecurity - Challenges and Opportunities

HTML5 and CSS3 Refresher


[8]ページ先頭

©2009-2025 Movatter.jp