Advertisement
modellking

DEV code snippets: simple SVG 100 px coos

Mar 29th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.51 KB | None | 0 0
  1. <svg
  2.     height="100%"
  3.     width="100%"
  4.    version="1.1"
  5.    viewBox="-50 -50 100 100"
  6.    xmlns="http://www.w3.org/2000/svg"
  7.     xmlns:xlink="http://www.w3.org/1999/xlink">
  8.     <defs>
  9.     </defs>
  10.     <g>
  11.         <rect
  12.         x="-50"
  13.         y="-50"
  14.         width="100"
  15.         height="100"
  16.         style="fill:rgb(0,0,0);opacity:0.5"/>
  17.         <line
  18.             style="stroke:rgb(0,0,0);stroke-width:1"
  19.             x1="-50"
  20.             y1="0"
  21.             x2="50"
  22.             y2="0"/>
  23.         <line
  24.             style="stroke:rgb(0,0,0);stroke-width:1"
  25.             x1="0"
  26.             y1="-50"
  27.             x2="0"
  28.             y2="50"/>
  29.     </g>
  30. </svg>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement