Blur text on hover

An example showing how to blur text on hover using Tizen 2.3.
<style>
  body {
    background: #282828;
  }
  
  p {
    font-family: 'Arial', sans-serif;
    font-size: 20pt;
    color: transparent;
    text-shadow: 0px 0px 0px #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  p:hover {
    text-shadow: 0px 0px 20px #ffffff;
  }
</style>
<p>Blurred text</p>

Responses

0 Replies