Honorable mentions- Flash(pg 200-206)
repeat
: Makes an image repeat horizontally and vertically.repeat y
: Makes an image repeat only on the y-axis.no repeat
: the image is only shown once.fixed
: the image is fixed on the screenscroll
: the image moves with the background as you scrollThis chapter just deals with the manipualtion of images throughout the webpage. Being able to resize or design a webpage by changing how the image is displayed or functions in general.
page title
: at the top of the webpage and lives within the head element.headings
are what allow search enginges to be able to optimize webpages and depending on the search. It just describes what your webpage is about.image alt
: this describes the image on your webpage for screeners and image based searches.seo
: search engine optimization. This is what allows your webpage to be either easily reachable to a user or just very hard to find.I took one sample from the page I thought was interesting or cool. I chose this code block because after the play buttun click is created it needs to change from pause icon to another icon and in this piece of code they are doing just that. Overall this article is just showing the code behind a video window but the real interesing part is the forward and backward. I would never think they would be using an if statement ro rewind and fast forward. the thought just didnt occure to me.
function playPauseMedia() {
if(media.paused) {
play.setAttribute('data-icon','u');
media.play();
} else {
play.setAttribute('data-icon','P');
media.pause();
}
}