Chapter 7 Flashcards

1
Q

What is border-radius property?

A

The CSS3 border-radius property creates rounded corners with a style sheet that is rendered by the browser. The border-radius property is currently supported by all of the current major browsers and does not require a vendor specific prefix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the syntax of box-shadow?

A

h-shadow v-shadow blur spread color;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the syntax of text-shadow?

A

h-shadow v-shadow blur color;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are two types of gradients used the most in css3?

A

Linear and Radial gradient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is linear gradient?

A

A linear gradient will create a smooth transition between two or more colors in a line up, down, left, right, or diagonally

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is radial gradient?

A

A radial gradient will create a smooth transition between two or more colors in a radius or circle from the center of the element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is transparency?

A

Transparency is how invisible or see through the element is and is defined through the opacity property.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Opacity property?

A

Default value = 0 = elements are completely opaque.

Value should be between 1 and 0.

.5 = 50 % opaque
.25=25% opaque

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is WOFF?

A

Web Open Font Format.

You can have an ability to use an unlimited number of custom fonts.

It is not a standard yet, it is in the process by W3C.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is transformations?

A

Transformations are effects that allow an element to move, resize, rotate, or stretch.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How many transformations are there?

A

There are two dimensional (2D) transformations that use the x and y-axis, or can be thought of as width and height. Three dimensional (3D) transformations include a third dimension which is labeled as the z-axis.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a skew element?

A

The skew function is used to stretch an element by providing the x-axis angle and y-axis angle in degrees that the element should stretch. The example below will stretch the element by 25 degrees on the x-axis and will stretch by 45 degrees on the y-axis.
Skew Syntax: skew(x-angle, y-angle)
2D-Skew example:
transform: skew(25deg, 45deg);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is keyframes rule used for?

A

@keyframes Rule Syntax

@keyframes animationname {keyframes-selector {css-styles;}}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is animation property syntax?

A

animation: animationname duration timing-function delay iteration-count direction fill-mode play-state;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How is animation done?

A
0%= beginning of animations 
100%= end of the animation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is SVG filter effects?

A

SVG filters are applied to SVG elements using the filter attribute and the value should be set to the id of a valid filter element id.

17
Q

What is perspective-origin property?

A

The perspective-origin property accepts x and y values that indicate the location of the viewer’s eyes.

perspective-origin Property Syntax:
perspective-origin: x-axis y-axis;