• Resolved Tjeerd-Engel

    (@tjeerd-engel)


    How can i change the puls color?

    I want to set the color to orange. Is that possible?

    Thanx

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Le Van Toan

    (@levantoan)

    Try this css

    @-moz-keyframes Ani {
        0% {
            box-shadow: 0 0 0 rgba(255,120,0,0) !important;
            border: 1px solid rgba(255,120,0,0) !important;
            -webkit-transform: scale(0) !important;
            transform: scale(0) !important;
        }
    
        70% {
            box-shadow: 0 0 50px #ff7800 !important;
            border: 1px solid #ff7800 !important;
            -webkit-transform: scale(1) !important;
            transform: scale(1) !important
        }
    
        100% {
            box-shadow: 0 0 60px rgba(255,120,0,0);
            border: 0 solid rgba(255,120,0,0);
            -webkit-transform: scale(1.5);
            transform: scale(1.5)
        }
    }
    
    @-webkit-keyframes Ani {
        0% {
            box-shadow: 0 0 0 rgba(255,120,0,0) !important;
            border: 1px solid rgba(255,120,0,0) !important;
            -webkit-transform: scale(0) !important;
            transform: scale(0) !important
        }
    
        70% {
            box-shadow: 0 0 50px #ff7800 !important;
            border: 1px solid #ff7800 !important;
            -webkit-transform: scale(1) !important;
            transform: scale(1) !important
        }
    
        100% {
            box-shadow: 0 0 60px rgba(255,120,0,0);
            border: 0 solid rgba(255,120,0,0);
            -webkit-transform: scale(1.5);
            transform: scale(1.5)
        }
    }
    
    @keyframes Ani {
        0% {
            box-shadow: 0 0 0 rgba(255,120,0,0) !important;
            border: 1px solid rgba(255,120,0,0) !important;
            -webkit-transform: scale(0) !important;
            transform: scale(0) !important
        }
    
        70% {
            box-shadow: 0 0 50px #ff7800 !important;
            border: 1px solid #ff7800 !important;
            -webkit-transform: scale(1) !important;
            transform: scale(1) !important
        }
    
        100% {
            box-shadow: 0 0 60px rgba(255,120,0,0);
            border: 0 solid rgba(255,120,0,0);
            -webkit-transform: scale(1.5);
            transform: scale(1.5)
        }
    }
    Thread Starter Tjeerd-Engel

    (@tjeerd-engel)

    Thanx

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change puls collor’ is closed to new replies.