Advertisement
phirani

SVG Coding

Apr 9th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <svg height="50" width="1260">
  2. <defs>
  3. <filter id="f3" x="0" y="0" width="200%" height="200%">
  4. <feOffset result="offOut" in="SourceAlpha" dx="20" dy="20" />
  5. <feGaussianBlur result="blurOut" in="offOut" stdDeviation="10" />
  6. <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
  7. </filter>
  8. </defs>
  9. <rect width="1300" height="25" stroke="blue" stroke-width="1"
  10. fill="white" filter="url(#f3)" />
  11. </svg>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement