2013-01-12 03:41:09 +04:00
|
|
|
<!DOCTYPE html>
|
2011-07-16 05:13:38 +04:00
|
|
|
<html>
|
2013-01-12 03:41:09 +04:00
|
|
|
<head>
|
|
|
|
<title></title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<style>
|
|
|
|
.feedback-overlay-black{
|
|
|
|
background-color:#000;
|
|
|
|
opacity:0.5;
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
div{
|
|
|
|
padding:20px;
|
|
|
|
margin:0 auto;
|
|
|
|
border:5px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1{
|
|
|
|
border-bottom:2px solid white;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2{
|
|
|
|
background: #efefef;
|
|
|
|
padding:10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div style="background:red;">
|
|
|
|
<div style="background:green;">
|
|
|
|
<div style="background:blue;border-color:white;">
|
|
|
|
<div style="background:yellow;"><div style="background:orange;"><h1>Heading</h1>
|
|
|
|
Text that isn't wrapped in anything.
|
|
|
|
<p>Followed by some text wrapped in a <b><p> paragraph.</b> </p>
|
|
|
|
Maybe add a <a href="#">link</a> or a different style of <a href="#" style="background:white;" id="highlight">link with a highlight</a>.
|
|
|
|
<hr />
|
|
|
|
<h2>More content</h2>
|
|
|
|
<div style="width:10px;height:10px;border-width:10px;padding:0;">a</div>
|
|
|
|
</div></div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-01 21:22:56 +04:00
|
|
|
<script type="text/javascript" src="../dist/html2canvas.js"></script>
|
2013-08-04 16:58:42 +04:00
|
|
|
<script type="text/javascript">
|
2014-09-14 21:04:37 +04:00
|
|
|
html2canvas(document.body).then(function(canvas) {
|
|
|
|
document.body.appendChild(canvas);
|
2013-08-04 16:58:42 +04:00
|
|
|
});
|
|
|
|
</script>
|
2013-01-12 03:41:09 +04:00
|
|
|
</body>
|
2011-07-16 05:13:38 +04:00
|
|
|
</html>
|