Gradients and Shadows Both gradients and shadows are visual elements that must be used consciously. Gradients make color transitions smooth and shadows.

Slides:



Advertisements
Similar presentations
Chapter 6 More CSS Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Advertisements

CSS level 3. History of CSS CSS level 1 – original CSS CSS level 2 CSS level 2 Revision 1 (CSS2.1) – up to CSS2.1 monolithic structure CSS level 3 – specification.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts 1.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
COMP213 – Web Interface Design
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 14: Enhancements and Effects with CSS3.
The Elements of Design Design Elements Gateway To Technology®
The Elements of Design © 2011 Project Lead The Way, Inc.Introduction.
Managing the Graphical Interface by Using CSS Lesson 7.
Web Design (15) CSS Opacity, Link Colours & Background Images.
PowerPoint Vocabulary Tabs 1. Backgrounds: Backgrounds are used in presentations to create a more interesting eye-pleasing look. Backgrounds may include.
3.3. Managing the Graphical Interface by Using CSS. Managing the Graphical Interface by Using CSS.
Web Development & Design Foundations with HTML5 8th Edition
CSS3 Style of the HTML document CSS2+New Specifications Differences
Tutorial 4 Topic: CSS 3.0 Li Xu
Surah Al- Muzzammil (Verses 1-9)
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Advanced CSS BIS1523 – Lecture 20.
Tools & Safety Three Stacked Videos (Advanced) How to use:
Web Systems & Technologies
The Elements of Design Design Elements Gateway To Technology®
Chapter 6 More CSS Basics Key Concepts
Smart Graphic Layout TOPIC statement
به نام مهربانترین In the name of the most compassionate
Objectives Create a figure box Add a background image
Animated picture changes during motion path (Advanced)
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
بسم الله الرحمن الرحیم مركز بهمن استاندارد- مديريت ارزيابي و مانيتورينگ كيفي.
Order of Operations Problems
Farming: An example of a system
The Elements of Design Design Elements Gateway To Technology®
Box model, spacing, borders, backgrounds
Cascading Style Sheets
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
TAB ONE TAB TWO TAB THREE TAB FOUR TAB FIVE
Greek and Latin Roots Unit 16.
Order of Operations Problems
TEACHER CREATES KNOWLEDGE ACQUISITION
The Elements of Design Design Elements Design Elements
Hope City Church - LPD Church of the Week
TEXT TEXT TEXT Animated rectangles curve up and grow in sequence
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
Mrs. Book Liberty Hill Middle School Algebra I
Sample statement or caption goes here
The Elements of Design Design Elements Gateway To Technology®
موضوع بحث: تعریف علم اصول جلسه 43.
اشاره به نتایج قیاس های فقهی گاهی، حکم شرعی است
علم اصول، «نفس قواعد» است نه «علم به قواعد»
گزارش فعالیت سه ماهه دبستان ابن سینا
Pictures in 3-D flip book (Intermediate)
How to use the CSS box model for spacing, borders, and backgrounds
The Elements of Design Design Elements Gateway To Technology®
Smart Graphic Layout TOPIC statement
Simple Faith Coming to Living Hope Church on Saturday 1st April 2017
spotLIGHT TEXT Ppt宝藏 提供下载 (Intermediate)
LPD Church of the Week We praise God for the smooth transition to two services and for the new faces we have seen as a result of increasing our capacity.
The Elements of Design Design Elements Gateway To Technology®
Paleolithic Mesolithic Neolithic Bronze Age
Divide Whole Numbers by Decimal Numbers
The Elements of Design Design Elements Gateway To Technology®
The Development of Atomic Models
قاعده لا ضرر، تنها در شبهات حکمیه جاری است
Picture with watercolor overlay background (Advanced)
Please Do Now / Dec. 2, 15 Log into computer Go to
جلسه 34.
Defining Religious Experiences
SAT’s Information Evening
1 ج : اشاره بعضی از اصولیون به تعریف ترکیبی آخوند با «یک لفظ»
Presentation transcript:

Gradients and Shadows Both gradients and shadows are visual elements that must be used consciously. Gradients make color transitions smooth and shadows help separate text or objects from their background

Gradients There are linear and radial gradients. They are called linear when the color transition takes place along a line. Radial (often used with circular or elliptic shapes) when the color transition follows the radius.

Syntax: linear-gradient( [ | to,]? [, ]+ ) \ / \ / Definition of the gradient line List of color stops where = [left | right] || [top | bottom] and = [ | ]? linear-gradient( 45deg, blue, red ); /* A gradient on 45deg axis starting blue and finishing red */ linear-gradient( to left top, blue, red); /* A gradient going from the bottom right to the top left starting blue and finishing red */ linear-gradient( 0deg, blue, green 40%, red ); /* A gradient going from the bottom to top, starting blue, being green after 40% and finishing red */ Linear Gradients Syntax

Syntax: radial-gradient( [[ circle || ] [ at ]?, | [ ellipse || [ | ]{2}] [ at ]?, | [ [ circle | ellipse ] || ] [ at ]?, | at, [, ]+ ) \ /\ / Definition of the contour, size and position of the ending shape List of color stops where = closest-corner | closest-side | farthest-corner | farthest-side and = [ | ]? Radial Gradients Syntax

Repeating Gradient Examples We can have repeating gradients as backgrounds body { background: linear-gradient(-45deg, blue, violet); background-size: 50px 50px; background-color: #EC173A;}

Shadows We can have box and text shadows. Box shadows are used for objects of various shapes. Text shadows add shadow effects to type.

Formal syntax: none | [inset? && [ ? ? ? ] ]# Box Shadows Syntax Box Shadows Examples

Formal grammar: none | [,]* where is: [ ? ? | ? ? ] Text Shadows Syntax Text Shadows Examples