[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
pmb2
/
assets
/
New folder
/
ExplorerCanvas-master
/
testcases
/
[
Home
]
File: pattern.html
<!DOCTYPE html> <html> <head> <title>Pattern Test</title> <style> body { text-align: center } </style> <!--[if IE]><script src="../excanvas.js"></script><![endif]--> <script> var img; function draw() { var ctx = document.getElementById('c').getContext('2d'); var p = ctx.createPattern(img, 'repeat'); ctx.translate(50, 50); ctx.fillStyle = p; ctx.fillRect(0, 0, 300, 300); } window.onload = function() { img = new Image; img.onload = function() { draw(); }; img.src = 'pattern.jpg'; }; </script> </head> <body> <canvas id=c width=400 height=400></canvas> <p>This tests patterns</p> </body> </html>