Eclectic Animations.

Slides:



Advertisements
Similar presentations
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Advertisements

MIS 425 Lecture 2 – HTML Navigation, Colors, tables and Styles Instructor: Martin Neuhard
Adding styles. Three alternatives HIT151 Web 'n' Net Web Page Basics /*stylesheet*/ h1,h2,h3 { font-family: verdana, arial, 'sans serif'; } p,table,li.
Links.  Styling Links  Links can be styled with any CSS property (e.g. color, font-family, background-color).  Special for links are that they can.
Cascading Style Sheets CSS. What is it? Another file format ! its not like html Describes the looks of “selectors” in a.css file (example.css) in the.
CSS Link Styling. The Anchor Element: Link text between the opening and closing can be styled using CSS. Some of the properties that can be set are: font-family,
INTRODUCTORY Tutorial 7 Creating Liquid Layouts. XP Objectives Discern the differences among various types of layouts Create a liquid layout Create a.
Neal Stublen Transforms  Defined by the transform property Translate Rotate Scale Skew  Apply to any element without affecting.
Course ILT Modifying presentations Unit objectives Create a presentation based on a template and apply a template to an existing presentation Identify.
Using CSS for Page Layout. Types of HTML Elements Block-Level Element –Creates blocks of content e.g. div, h1..h6, p, ul, ol, li, table, form –They start.
Cascading Style Sheets Controlling the Display Of Web Content.
Master Slides And Slide Shows too. Getting to the Slide Master.
Understanding HTML Style Sheets. What is a style?  A style is a rule that defines the appearance and position of text and graphics. It may define the.
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
CHAPTER 24 PERFORMING CSS TRANSITIONS AND ANIMATIONS.
Tutorial 6 Creating Tables and CSS Layouts. Objectives Session 6.1 – Create a data table to display and organize data – Modify table properties and layout.
Creating A Simple Web Page. Step 1- Open Dreamweaver & Create A New Page (File New) and blank.
Robert Vitolo CS430.  CSS (Cascading Style Sheets)  Purpose: To provide a consistent look and feel for a set of web pages To make it easy to update.
Learning & Development Telerik Software Academy.
Dreamweaver -- CSS. Dreamweaver -- MX New icons are added in MX Most of the features commonly used in web design, and are same as FrontPage. New feature.
The WORST PowerPoint Ever Topic: My Favorite ___________. By: Your Name Give this slide colors that do NOT go together and cannot be seen well in a presentation.
How to develop your website Chapter Websites Denise R. E. Copeland
A Power Point Presentation For... A Power Point Presentation ( click to advance slides )
Cascading Style Sheets by Pavlovic Nenad by. Presentation Contents  What is CSS?  Why CSS?  Types of Style Sheets  Style Sheets Syntax  Box Formatting.
Using Cascading Style Sheet As you create more web pages, you may wish to impose a consistent look for all of your web pages or for group of related pages.
Planning your site/organization on the Web Please use speaker notes for additional information!
Chapter 15 DHTML: Filters and Transitions CIS 275—Web Application Development for Business I.
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
CSCI 6962: Server-side Design and Programming Master Pages.
DYNAMIC HTML What is Dynamic HTML: HTML code that allow you to change/ specify the style of your web pages. Example: specify style sheet, object model.
HTML with Style!. What is a Style Sheet? CSS? Style Sheet CSSCascading Style Sheets A “language” for defining style rules. Rules that tell the browser.
How to Use Google Charts. Using Google Charts Google Charts is used to provide a way to visualize data on your website. You can choose to use simple line.
XP Tutorial 7 Creating a Flash Web Site. XP New Perspectives on Macromedia Flash 82 Objectives Plan and create a Flash Web site Create a Flash template.
Positioning Objects with CSS and Tables
- WE’LL LOOK AT THE POSITION PROPERTY AND HOW CSS RESOLVES CONFLICTS BETWEEN STYLING INSTRUCTIONS The position property; CSS specificity hierarchy.
NASRULLAHIBA.  It is time to take your web designing skills to the next level with Cascading Style Sheets (CSS). They are a way to control the look and.
HTML5 and CSS3 Illustrated Unit C: Getting Started with CSS.
CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, we’ll cover:  Brief CSS review  Creating sections with the tag  Creating inline.
PowerPoint Template for Physical Geography of India Project Please follow these directions: 1.Please insert your 10 completed sentences and at least 3.
HTML LAYOUTS. CONTENTS Layouts Example Layout Using Element Example Using Table Example Output Summary Exercise.
INTRO TO WEB DEVELOPMENT html
Creating Visual Effects
Creating a Flash Web Site
Getting Started with CSS
CSS HTML and website development.
Animation and Flexboxes
Organizing Content with Lists and Tables
Applying CSS to Tables Stylish Tables.
Advanced Web Page Styling
>> Introduction to CSS
Positioning Objects with CSS and Tables
Creating Visual Effects and Animation
CSS Transitions and Animations
Web Systems & Technologies
CSS Transitions and Animations
Cascading Style Sheets - Building a stylesheet
Cascading Style Sheets (Introduction)
Chapter Lessons Create shape-tweened animations Create a mask effect
Cascading Style Sheets (Introduction)
More CSS Page layout Boriana Koleva Room: C54
SEEM4570 Tutorial 3: CSS + CSS3.0
Nov. 28 Topics.
Exercise 9 Skills You create and use styles to create formatting rules that can easily by applied to other pages in the Web site. You can create internal.
Cascading Style Sheets - Building a stylesheet
Positioning Objects with CSS and Tables
Web Programming and Design
PowerPoint Lesson 4 Slide Transitions & Custom Animation
How to add a photo gallery in html/css
Monday, Sept. 24 Today we are going to update the html code to html5. It has some new features that we have not covered yet.
Creating a PowerPoint Presentation
Presentation transcript:

Eclectic Animations

Wireframe Plan for Page

Basics of Animation Keep in mind that transitions and transformations often used with animation A CSS animation is an instruction to progressively update one or more CSS properties over a period of time. Building Blocks  Keyframes— for stages and styles  Name  Stages, as a percentage   CSS Properties, defined for each stage. e.g. opacity, or transform.   Properties — assign @keyframes to elements   Assign the @keyframes  Define how  animated  

Animations involve two basic parts: The animation code using @keyframes Applying the animation to an element More Information at: https://www.w3schools.com/css/css3_animations.asp Click for a quick perusal.

Animations involve two basic parts: For an animation to work, you must specify at least the following two properties: name and duration. Additional Animation Properties In addition to the required animation-name and animation-duration properties, you can further customize and create complex animations using the following properties: animation-timing-function animation-delay animation-iteration-count animation-direction animation-fill-mode animation-play-state

#1 Animation: Purpose is to constantly change background color Double click on animateONE.txt. Copy to your stylesheet. I’ll give more instructions on applying it.

#2 Animation: Purpose is to move object in rectangular motion Double click on animateTWO.txt. Copy to your style sheet. There is an #anim div in the HTML <header> I’ll give more instructions on applying the animation.

#3 Animation/Transformation: When user hover over div, it spins Double click on animateTHREE.txt. Copy to your style sheet. Add this div to your HTML: I’ll give more instructions on applying it to the HTML parts. <div class="morph practicePic"> <!– insert small picture here--> </div>