Found 10483 Articles for Web Development

Fade Down Big Animation Effect with CSS

karthikeya Boyini
Updated on 16-Mar-2020 08:07:07

130 Views

To implement Fade Down Big Animation Effect on an image 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 fadeOutDownBig {             0% {                opacity: 1;                -webkit-transform: translateY(0);             }             100% {                opacity: 0;                -webkit-transform: translateY(2000px);             }          }          @keyframes fadeOutDownBig {             0% {                opacity: 1;                transform: translateY(0);             }             100% {                opacity: 0;                transform: translateY(2000px);             }          }          .fadeOutDownBig {             -webkit-animation-name: fadeOutDownBig;             animation-name: fadeOutDownBig;          }                           Reload page                       function myFunction() {             location.reload();          }          

Bounce Out Right Animation Effect with CSS

Arjun Thakur
Updated on 16-Mar-2020 08:05:49

67 Views

To implement Bounce Out Right Animation Effect with CSS, you can try to run the following codeExample                    .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 bounceOutRight {             0% {                -webkit-transform: translateX(0);             }             20% {                opacity: 1;                -webkit-transform: translateX(-20px);             }             100% {                opacity: 0;                -webkit-transform: translateX(2000px);             }          }          @keyframes bounceOutRight {             0% {                transform: translateX(0);             }             20% {                opacity: 1;                transform: translateX(-20px);             }             100% {                opacity: 0;                transform: translateX(2000px);             }          }          .bounceOutRight {             -webkit-animation-name: bounceOutRight;             animation-name: bounceOutRight;          }                     >/div>       Reload page                function myFunction() {             location.reload();          }          

CSS background-image property

Lakshmi Srinivas
Updated on 16-Mar-2020 08:05:13

174 Views

The CSS background-image property is used to specify the background image. You can try to run the following code to implement the background-image property in CSS −Example                    #demo {             border: 5px dashed red;             padding: 10px;             background-image: url("https://www.tutorialspoint.com/css/images/css-mini-logo.jpg");          }                              www.tutorialspoint.com          Tutorials Point originated from the idea ... Read More

CSS background-clip property

karthikeya Boyini
Updated on 16-Mar-2020 08:04:29

161 Views

The CSS background-lip property is used to declare the painting area of the background. You can try to run the following code to implement the background-clip property in CSS −Example                    #demo {             border: 5px dashed red;             padding: 10px;             background: orange;             background-clip: padding-box;          }                             ... Read More

Bounce Out Left Animation Effect with CSS

George John
Updated on 16-Mar-2020 08:03:35

71 Views

To implement Bounce Out Left Animation Effect with CSS, you can try to run the following codeExample                    .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 bounceOutLeft {             0% {                -webkit-transform: translateX(0);             }             20% {                opacity: 1;                -webkit-transform: translateX(20px);             }             100% {                opacity: 0;                -webkit-transform: translateX(-2000px);             }          }          @keyframes bounceOutLeft {             0% {                transform: translateX(0);             }             20% {                opacity: 1;                transform: translateX(20px);             }             100% {                opacity: 0;                transform: translateX(-2000px);             }          }          .bounceOutLeft {             -webkit-animation-name: bounceOutLeft;             animation-name: bounceOutLeft;          }                           Reload page                function myFunction() {             location.reload();          }          

Bounce Up Animation Effect with CSS

Samual Sam
Updated on 16-Mar-2020 08:02:54

127 Views

To implement Bounce Up Animation Effect with CSS, you can try to run the following code −Example                    .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 bounceInUp {             0% {                opacity: 0;                -webkit-transform: translateY(2000px);             }             60% {                opacity: 1;                -webkit-transform: translateY(-30px);             }             80% {                -webkit-transform: translateY(10px);             }             100% {                -webkit-transform: translateY(0);             }          }          @keyframes bounceInUp {             0% {                opacity: 0;                transform: translateY(2000px);             }             60% {                opacity: 1;                transform: translateY(-30px);             }             80% {                transform: translateY(10px);             }             100% {                transform: translateY(0);             }          }          .bounceInUp {             -webkit-animation-name: bounceInUp;             animation-name: bounceInUp;          }                     >/div>       Reload page                function myFunction() {             location.reload();          }          

Bounce Out Down Animation Effect with CSS

karthikeya Boyini
Updated on 26-Jun-2020 08:19:10

119 Views

To implement Bounce Out Down 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 bounceOutDown {             0% {                -webkit-transform: translateY(0);             }             20% {                opacity: 1;                -webkit-transform: translateY(-20px);             }             100% {                opacity: 0;                -webkit-transform: translateY(2000px);             }          }          @keyframes bounceOutDown {             0% {                transform: translateY(0);             }             20% {                opacity: 1;                transform: translateY(-20px);             }             100% {                opacity: 0;                transform: translateY(2000px);             }          }          .bounceOutDown {             -webkit-animation-name: bounceOutDown;             animation-name: bounceOutDown;          }                           Reload page                function myFunction() {             location.reload();          }          

Bounce Out Animation Effect with CSS

Arjun Thakur
Updated on 16-Mar-2020 08:01:05

161 Views

To implement Bounce Out 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 bounceOut {             0% {                -webkit-transform: scale(1);             }             25% {                -webkit-transform: scale(.95);             }             50% {                opacity: 1;                -webkit-transform: scale(1.1);             }             100% {                opacity: 0;                -webkit-transform: scale(.3);             }          }          @keyframes bounceOut {             0% {                transform: scale(1);             }             25% {                transform: scale(.95);             }             50% {                opacity: 1;                transform: scale(1.1);             }             100% {                opacity: 0;                transform: scale(.3);             }          }          .bounceOut {             -webkit-animation-name: bounceOut;             animation-name: bounceOut;          }                           Reload page                function myFunction() {             location.reload();          }          

Bounce In Right Animation Effect with CSS

Samual Sam
Updated on 26-Jun-2020 08:17:25

212 Views

To implement Bounce In Right 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 bounceInRight {             0% {                opacity: 0;                -webkit-transform: translateX(2000px);             }             60% {                opacity: 1;                -webkit-transform: translateX(-30px);             }             80% {                -webkit-transform: translateX(10px);             }             100% {                -webkit-transform: translateX(0);             }          }          @keyframes bounceInRight {             0% {                opacity: 0;                transform: translateX(2000px);             }             60% {                opacity: 1;                transform: translateX(-30px);             }             80% {                transform: translateX(10px);             }             100% {                transform: translateX(0);             }          }          .bounceInRight {             -webkit-animation-name: bounceInRight;             animation-name: bounceInRight;          }                           Reload page                function myFunction() {             location.reload();          }          

CSS background-origin property

Chandu yadav
Updated on 26-Jun-2020 08:16:48

163 Views

The CSS background-origin property is used to specify position of the background images.ExampleYou can try to run the following code to implement background-origin property:Live Demo                    #demo {             border: 5px dashed red;             padding: 10px;             background-image: url("https://www.tutorialspoint.com/css/images/css-mini-logo.jpg");             background-origin: content-box;          }                              www.tutorialspoint.com          The website www.tutorialspoint.com ... Read More

Advertisements