Content ITV PRO
This is Itvedant Content department
Learning Outcome(Slide2)
6
Basics of branding and messaging
5
Target audience and segmentation
4
Different marketing channels
3
Creating value for customers
2
Understanding customer needs
1
What marketing means ?
Choose cool, soft colors instead of vibrant colors
Max 6 Points for Summary & Min 4
Topic Name-Recall(Slide3)
Hook/Story/Analogy(Slide 4)
transform Property?The transform property in CSS is used to change the position, size, rotation, or shape of an element without affecting the layout of other elements.
Translate
Rotate
Scale
Skew
X-axis
Y-axis
Y-axis
X-axis
-1
-5
-4
-3
-2
-1
-5
-4
-3
-2
1
4
3
2
5
1
2
3
4
5
Positive value in X-axis
Negative value in X-axis
Negative value in Y-axis
0
Positive value in Y-axis
X-axis
Y-axis
Y-axis
X-axis
-1
-5
-4
-3
-2
1
4
3
2
5
-1
-5
-4
-3
-2
1
4
3
2
5
0
A positive `rotate` value in CSS rotates the element clockwise
X-axis
Y-axis
Y-axis
X-axis
-1
-5
-4
-3
-2
1
4
3
2
5
-1
-5
-4
-3
-2
1
4
3
2
5
0
A negative `rotate` value in CSS rotates the element anticlockwise
transform: translate(100px);
Value
Property
transform: translate(100px);
100px
transform: translate(100px);
translate( )
transform: translate(100px);
transform
Parameters are set within the function
Property
Function
Defines what aspect of an element is being styled
CSS functions manipulate styling data
Parameters in CSS functions define specific settings or values used for styling elements
translate() CSS functionThe translate() function is a CSS transform function used to move an element from its original position along the X-axis and Y-axis
It changes only the visual position of the element without affecting the layout of surrounding elements.
x → Moves the element horizontally.
translate() CSS functionThe translate() function is a CSS transform function used to move an element from its original position along the X-axis and Y-axis.
It changes only the visual position of the element without affecting the layout of surrounding elements.
y → Moves the element vertically.
.card:hover{
transform: translatex(100px);
}
.card:hover{
transform: translatex(-100px);
}
The rotate() function is a CSS transform function used to rotate an element around its center by a specified angle.
It changes the element's orientation without affecting the layout of surrounding elements.
Positive value (+) → Rotates clockwise
The rotate() function is a CSS transform function used to rotate an element around its center by a specified angle.
It changes the element's orientation without affecting the layout of surrounding elements.
Negative value (-) → Rotates counterclockwise
.card:hover{
transform: rotate(90deg);
}
.card:hover{
transform: rotate(-90deg);
}
scale() CSS FunctionThe scale() function is a CSS transform function used to increase or decrease the size of an element without changing its original layout.
It can enlarge or shrink an element along the X-axis, Y-axis, or both axes.
scale() CSS FunctionThe scale() function is a CSS transform function used to increase or decrease the size of an element without changing its original layout.
It can enlarge or shrink an element along the X-axis, Y-axis, or both axes.
If only one value is provided, it is applied to both the X and Y axes.
.card:hover{
transform: scale(1.2);
}
.card:hover{
transform: scale(0.8);
}
skew() CSS FunctionThe skew() function is a CSS transform function used to slant (tilt) an element along the X-axis, Y-axis, or both axes without changing its original size.
It gives the element an angled or distorted appearance.
.card:hover{
transform: skewX(15deg);
}
.card:hover{
transform: skewY(15deg);
}
transition PropertyThe transition property in CSS is used to create smooth animations when the value of a CSS property changes.
Instead of changing instantly, the property changes gradually over a specified duration, making the user interface more attractive and interactive.
transition-property
Specifies the CSS property to animate.
transition-duration
Specifies how long the transition takes.
transition-timing-function
Controls the speed of the transition
transition-delay
Delays the start of the transition.
.card {
transition : 0.5s;
}
.card:hover{
transform: translate(100px);
}
An animation lets an element gradually change from one style to another.
You can change as many CSS properties you want, as many times as you want.
To use CSS animation, you must specify some keyframes for the animation.
The animation-name
property specifies a name for the animation.
The animation-duration property defines how long an animation should take to complete.
When you specify CSS styles inside the @keyframes rule, the animation will gradually change from the current style to the new style at certain times.
div {
width: 100px;
height: 100px;
background-color: red;
position: relative;
animation-name: myAnimation;
animation-duration: 4s;
}
@keyframes myAnimation {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
}Core Concepts (Slide 6)
Core Concepts (Slide 7)
Core Concepts (.....Slide N-3)
Summary
5
Build strong branding
4
Use different marketing channels
3
Target the right audience
2
Create and communicate value
1
Understand customer needs
Choose cool, soft colors instead of vibrant colors
Max 5 Points for Summary & Min 2
Quiz
Which platform is mainly used for professional networking and B2B marketing ?
A. Facebook
B. Instagram
C. LinkedIn
D. Snapchat
Quiz-Answer
Which platform is mainly used for professional networking and B2B marketing ?
A. Facebook
B. Instagram
C. LinkedIn
D. Snapchat
By Content ITV