mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Added canvas image test
This commit is contained in:
parent
025097dbbd
commit
44f1b0a599
@ -10,6 +10,14 @@
|
|||||||
<script type="text/javascript" src="../build/jquery.plugin.html2canvas.js"></script>
|
<script type="text/javascript" src="../build/jquery.plugin.html2canvas.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(window).ready(function() {
|
$(window).ready(function() {
|
||||||
|
var ctx = $('#testcanvas')[0].getContext('2d');
|
||||||
|
|
||||||
|
ctx.fillStyle = "rgb(200,0,0)";
|
||||||
|
ctx.fillRect (10, 10, 55, 50);
|
||||||
|
|
||||||
|
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
|
||||||
|
ctx.fillRect (30, 30, 55, 50);
|
||||||
|
|
||||||
$('body').html2canvas();
|
$('body').html2canvas();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@ -53,5 +61,8 @@
|
|||||||
<img src="image.jpg" style="width:0px;height:0px;border:1px solid black" />
|
<img src="image.jpg" style="width:0px;height:0px;border:1px solid black" />
|
||||||
<img src="image.jpg" style="width:0px;height:0px;" />
|
<img src="image.jpg" style="width:0px;height:0px;" />
|
||||||
|
|
||||||
|
<canvas id="testcanvas" style="width:100px;height:100px;"></canvas>
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user