CSS Articles - Page 117 of 130

Aural Media CSS Properties

Samual Sam
Updated on 20-Jun-2020 06:40:32

95 Views

Aural rendering of documents is mainly used by the visually impaired. The following are the aural media CSS properties −The azimuth property sets, where the sound should come from horizontally.The elevation property sets, where the sound should come from vertically.The cue-after specifies a sound to be played after speaking an element's content to delimit it from other.The cue-before specifies a sound to be played before speaking an element's content to delimit it from other.The cue is a shorthand for setting cue-before and cue-after.The pause-after specifies a pause to be observed after speaking an element's content.The pause-before specifies a pause to be observed ... Read More

Roll In Animation Effect with CSS

Krantik Chavan
Updated on 29-Jun-2020 07:05:37

570 Views

To create a roll in animation effect with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes rollIn {             0% {                opacity: 0;                -webkit-transform: translateX(-100%) rotate(-120deg);             }             100% {                opacity: 1;                -webkit-transform: translateX(0px) rotate(0deg);             }          }          @keyframes rollIn {             0% {                opacity: 0;                transform: translateX(-100%) rotate(-120deg);             }             100% {                opacity: 1;                transform: translateX(0px) rotate(0deg);             }            }          .rollIn {             -webkit-animation-name: rollIn;             animation-name: rollIn;          }                           Reload page                function myFunction() {             location.reload();          }          

Pulse Animation Effect with CSS

Arjun Thakur
Updated on 27-Jun-2020 13:30:33

775 Views

To create pulse effect with CSS, you can try to run the following codeExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes pulse {             0% { -webkit-transform: scale(1); }             50% { -webkit-transform: scale(1.1); }             100% { -webkit-transform: scale(1); }          }          @keyframes pulse {             0% { transform: scale(1); }             50% { transform: scale(1.1); }             100% { transform: scale(1); }          }          .pulse {             -webkit-animation-name: pulse;             animation-name: pulse;          }                           Reload page                function myFunction() {             location.reload();          }          

How to define the location of a font for download in CSS

Chandu yadav
Updated on 27-Jun-2020 12:40:12

125 Views

The @font-face rule is used to define the location of a font for download, although this may run into implementation-specific limits.ExampleLet us see an example    

Mobile

Light Speed In Animation Effect with CSS

Smita Kapse
Updated on 27-Jun-2020 12:39:44

660 Views

To create a light speed in effect with CSS, you can try to run the following code:ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 1s;             animation-duration: 1s;             -webkit-animation-fill-mode: both;             animation-fill-mode: ... Read More

Hinge Animation Effect with CSS

karthikeya Boyini
Updated on 27-Jun-2020 12:39:12

175 Views

To create hinge animation effect with CSS, you can try to run the following code:ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 1s;             animation-duration: 1s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;   ... Read More

Create blurred picture or text with CSS Filters

Yaswanth Varma
Updated on 08-Jan-2024 14:27:45

469 Views

Users find a website with a blurred background to be visually good-looking. But have you ever considered how this blur is made specifically? Well, it's quite easy. Let's look at how to use the CSS background blur property to do it. Using CSS filters to generate blurred effects on images or text is a common web development method to improve visual appeal or achieve certain design sensibilities. The rendering of items on a webpage can be altered, including blurring, with CSS filters. When using the CSS filter: blur() property on images, make necessary adjustments to the blur radius. For example, ... Read More

CSS Chroma Filter

Anvi Jain
Updated on 27-Jun-2020 12:26:18

3K+ Views

Chroma Filter is used to making any particular color transparent and usually, it is used with images. You can use it with scrollbars also.ExampleImplementing the CSS Chroma Filter −Live Demo                         Text Example:       CSS Tutorials    

CSS play-during property

Samual Sam
Updated on 27-Jun-2020 12:25:48

88 Views

This property specifies a sound to be played as a background while an element's content is spoken. Possible values could be any of the followings −URI − The sound designated by this is played as a background while the element's content is spoken.mix − When present, this keyword means that the sound inherited from the parent element's play-during property continues to play and the sound designated by the uri is mixed with it. If the mix is not specified, the element's background sound replaces the parent's.repeat − When present, this keyword means that the sound will repeat if it ... Read More

Wave effect with CSS?

karthikeya Boyini
Updated on 27-Jun-2020 12:22:47

2K+ Views

Wave effect is used to give the object a sine wave distortion to make it look wavy.The following parameters can be used in this filter:S.NoParameter & Description1.AddA value of 1 adds the original image to the waved image, 0 does not.2.FreqThe number of waves.3.LightThe strength of the light on the wave (from 0 to 100).4.PhaseAt what degree the sine wave should start (from 0 to 100).5.StrengthThe intensity of the wave effect.ExampleYou can try to run the following code to set wave effect:Live Demo                         Text Example:       CSS Tutorials    

Advertisements