刷新图片Src内容并停止刷新
嗨,我有一个功能,每秒刷新“src”attr。 ,现在我想当我点击按钮停止时,它会停止间隔,另外,制作一个按钮拍摄照片并将其保存到计算机,如快照。
<img src="http://someurl" id="image1" class="g" />
<button id="stop">STOP!</button>
<button id="capture">capture</button>
Example 你可以在这里看到我写的东西并给我指示,谢谢。
答案 0 :(得分:0)
Canvas2Image 插件可能会对您有所帮助。
使用HTML5 canvas元素,您可以使用Javascript动态创建客户端的各种酷炫图形。但是,画布图像不能(在所有浏览器中)只是像任何其他图像一样保存到磁盘。
幸运的是,在canvas对象上有一个名为toDataURL()的简洁函数。此函数将图像数据编码为base64编码的PNG文件,并将其作为数据返回:URI。
要在IE中工作,您需要一个画布支持库,例如http://excanvas.sourceforge.net/
另请查看this question.
修改强>
刷新图片很简单:
//Declare array of images
var images = ['http://www.creativereview.co.uk/images/uploads/2012/10/1_press_image_l_for_the_lol_of_cats_l_maru_0.jpg',
'http://blog.naseeb.com/wp-content/uploads/2010/12/cute-cat.jpg',
'http://www.helpinghomelesscats.com/images/cat1.jpg'];
var loop = 0;
//This function will refresh image on specified interval
function refreshImages() {
$('#myimage').attr('src', images[loop]);
loop++;
if (loop === images.length) {
loop = 0;
}
}
//Set Refresh time here
var setInt = self.setInterval(function() {
refreshImages();
}, 1000);
//This button stops the image refreshing
$('#stop').click(function() {
setInt = window.clearInterval(setInt);
});
//Add image capture code here