mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Prebuilt distribution files
This commit is contained in:
parent
a5969be6f6
commit
98bc1f0833
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,7 +5,6 @@
|
|||||||
/tests/cache/
|
/tests/cache/
|
||||||
/tests/flashcanvas.html
|
/tests/flashcanvas.html
|
||||||
/lib/
|
/lib/
|
||||||
/build/
|
|
||||||
image.jpg
|
image.jpg
|
||||||
/.project
|
/.project
|
||||||
/.settings/
|
/.settings/
|
||||||
|
3007
build/html2canvas.js
Normal file
3007
build/html2canvas.js
Normal file
File diff suppressed because it is too large
Load Diff
87
build/jquery.plugin.html2canvas.js
Normal file
87
build/jquery.plugin.html2canvas.js
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
/**
|
||||||
|
@license html2canvas v0.33 <http://html2canvas.hertzen.com>
|
||||||
|
Copyright (c) 2011 Niklas von Hertzen. All rights reserved.
|
||||||
|
http://www.twitter.com/niklasvh
|
||||||
|
|
||||||
|
Released under MIT License
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* jQuery helper plugin for examples and tests
|
||||||
|
*/
|
||||||
|
(function( $ ){
|
||||||
|
$.fn.html2canvas = function(options) {
|
||||||
|
if (options && options.profile && window.console && window.console.profile) {
|
||||||
|
console.profile();
|
||||||
|
}
|
||||||
|
var date = new Date(),
|
||||||
|
html2obj,
|
||||||
|
$message = null,
|
||||||
|
timeoutTimer = false,
|
||||||
|
timer = date.getTime();
|
||||||
|
options = options || {};
|
||||||
|
|
||||||
|
options.onrendered = options.onrendered || function( canvas ) {
|
||||||
|
var $canvas = $(canvas),
|
||||||
|
finishTime = new Date();
|
||||||
|
|
||||||
|
if (options && options.profile && window.console && window.console.profileEnd) {
|
||||||
|
console.profileEnd();
|
||||||
|
}
|
||||||
|
$canvas.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: 0,
|
||||||
|
top: 0
|
||||||
|
}).appendTo(document.body);
|
||||||
|
$canvas.siblings().toggle();
|
||||||
|
|
||||||
|
$(window).click(function(){
|
||||||
|
$canvas.toggle().siblings().toggle();
|
||||||
|
throwMessage("Canvas Render " + ($canvas.is(':visible') ? "visible" : "hidden"));
|
||||||
|
});
|
||||||
|
throwMessage('Screenshot created in '+ ((finishTime.getTime()-timer)) + " ms<br />",4000);
|
||||||
|
|
||||||
|
// test if canvas is read-able
|
||||||
|
try {
|
||||||
|
$canvas[0].toDataURL();
|
||||||
|
} catch(e) {
|
||||||
|
if ($canvas[0].nodeName.toLowerCase() === "canvas") {
|
||||||
|
// TODO, maybe add a bit less offensive way to present this, but still something that can easily be noticed
|
||||||
|
alert("Canvas is tainted, unable to read data");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
html2obj = html2canvas(this, options);
|
||||||
|
|
||||||
|
function throwMessage(msg,duration){
|
||||||
|
window.clearTimeout(timeoutTimer);
|
||||||
|
timeoutTimer = window.setTimeout(function(){
|
||||||
|
$message.fadeOut(function(){
|
||||||
|
$message.remove();
|
||||||
|
$message = null;
|
||||||
|
});
|
||||||
|
},duration || 2000);
|
||||||
|
if ($message)
|
||||||
|
$message.remove();
|
||||||
|
$message = $('<div />').html(msg).css({
|
||||||
|
margin:0,
|
||||||
|
padding:10,
|
||||||
|
background: "#000",
|
||||||
|
opacity:0.7,
|
||||||
|
position:"fixed",
|
||||||
|
top:10,
|
||||||
|
right:10,
|
||||||
|
fontFamily: 'Tahoma',
|
||||||
|
color:'#fff',
|
||||||
|
fontSize:12,
|
||||||
|
borderRadius:12,
|
||||||
|
width:'auto',
|
||||||
|
height:'auto',
|
||||||
|
textAlign:'center',
|
||||||
|
textDecoration:'none',
|
||||||
|
display:'none'
|
||||||
|
}).appendTo(document.body).fadeIn();
|
||||||
|
html2obj.log(msg);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
})( jQuery );
|
Loading…
Reference in New Issue
Block a user