mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
34 lines
664 B
HTML
34 lines
664 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>element render test</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<script type="text/javascript" src="../../test.js"></script>
|
|
<style>
|
|
#div1 {
|
|
position: absolute;
|
|
left: 250px;
|
|
top: 250px;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
|
|
body, html {
|
|
background: red;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="div1">
|
|
great success
|
|
</div>
|
|
<script>
|
|
var forceElement = document.querySelector('#div1');
|
|
h2cSelector = forceElement;
|
|
</script>
|
|
</body>
|
|
</html>
|