I'm looking for a part-time remote job.

Hire me


I'm the author of:

Mastering Redmine is a comprehensive guide with tips, tricks and best practices, and an easy-to-learn structure.

Check the book's project or

Buy the book

Social pages of the book:

By buying this book you also donate to Redmine (see this page).


Follow me:

{{blink(css_color1, css_color2}} - blinking text

Added by Miodrag Milic almost 10 years ago

  • Name
    blink
    
  • Description
    Blinking tekst
    arg1, arg2 - CSS colors.
    
  • Content
    <style>
    .text_blink {
      color:%[1]; 
      font-weight:bold;  
      animation: blink 2s step-end infinite;
     -webkit-animation: blink 2s step-end infinite;
    }
    
    @keyframes blink
    {
        0% {color: %[1]}
        50% {color: %[2]}
    }
    @-webkit-keyframes blink
    {
        0% {color: %[1]}
        50% {color: %[2]}
    }
    </style>
    
    <div class="text_blink">
    %(*)
    </div>
    
  • Example
    {{blink(red, #FAFAFA)
    Must read for everybody!
    }}
    

Replies (1)

RE: {{blink(css_color1, css_color2}} - blinking text - Added by Miodrag Milic almost 10 years ago

BTW, Andriy Lesyuk is there any way to force Textile evaluation within macro body ?

    (1-1/1)

    Terms of use | Privacy policy