Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Snap.svg vs Svg.js</title>
  <script src="https://rawgithub.com/adobe-webplatform/Snap.svg/master/dist/snap.svg.js"></script>
  </head>
  <body>
    <div id="drawing"></div>
    <script>
    // create svg drawing
    var draw = Snap(800, 600);
    // create image
    var image = draw.image('http://www.svgjs.com/images/shade.jpg', 0, -150, 600, 600);
    // create text
    var text = draw.text(0,120, 'SNAP.SVG');
  
    text.attr({
      fontFamily: 'Source Sans Pro',
      fontSize: 120,
      textAnchor: 'left'
    });
    // clip image with text
    image.attr('clip-path', text);
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers