Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Animation w/ montion blur

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #37743
    cang_nduc
    Member

    hi all.
    i just wonder if there’s a way to add motion blur to the animation of an object :)
    i’ve googled for it, but couldn’t find the answer

    #red {
    width:50px;
    height:50px;
    margin-top:50px;
    background-color:red;
    -webkit-animation:move 1s infinite alternate;
    }
    @-webkit-keyframes move {
    0% {-webkit-transform:translateX(0px); }
    100% {-webkit-transform:translateX(250px)}
    }​
    #101619
    cang_nduc
    Member

    no, i mean the object blur out when it moves

    #101631
    Mottie
    Member

    This demo is about the best I can do… maybe someone better at css3 has another trick?

    #red {
    width:50px;
    height:50px;
    margin-top:50px;
    padding: 2px;
    background-color:red;
    color: white;
    -webkit-animation: move 2s infinite alternate ease-in-out;
    -moz-animation: move 2s infinite alternate ease-in-out;
    animation: move 2s infinite alternate ease-in-out;
    }
    @-webkit-keyframes move {
    0% {
    -webkit-transform:translateX(0px);
    -moz-transform:translateX(0px);
    transform:translateX(0px);
    }
    25% {
    -webkit-box-shadow: -3px 0px 8px 1px red;
    -moz-box-shadow: -3px 0px 8px 1px red;
    box-shadow: -3px 0px 8px 1px red;
    }
    50% {

    -webkit-box-shadow: 0 0 8px 1px red;
    -moz-box-shadow: 0 0 8px 1px red;
    box-shadow: 0 0 8px 1px red;
    }
    75% {
    -webkit-box-shadow: 3px 0px 8px 1px red;
    -moz-box-shadow: 3px 0px 8px 1px red;
    box-shadow: 3px 0px 8px 1px red;
    }
    100% {
    -webkit-transform:translateX(250px);
    -moz-transform:translateX(250px);
    transform:translateX(250px);
    }
    }​
    #101636
    cang_nduc
    Member

    @Mottie : thanks so much for the code. not really motion blur but very well looking. thanks again :)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.