Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h1>couche de masque SVG</h1> <p>Une couche de masque SVG (formée comme un triangle) :</p> <svg width="600" height="400" xmlns="http://www.w3.org/2000/svg"> <mask id="svgmask1"> <polygon fill="#ffffff" points="200 0, 400 400, 0 400"></polygon> </mask> <image xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="img_5terre.jpg" mask="url(#svgmask1)"></image> </svg> <p>Image originale :</p> <img src="img_5terre.jpg" alt="Cinque Terre" width="600" height="400"> </body> </html>