Answers for "zoom in and outr iframe content"

0

zoom out iframe content to fit

<iframe width="1024" height="768" src="http://www.bbc.com" style="-webkit-transform:scale(0.5);-moz-transform-scale(0.5);"></iframe>
Posted by: Guest on May-26-2020
0

iframe content zoom in and zoom out jquery

var anOtherOnZoomFunction = function(info) {
	console.log(info);
};

$.axZm.userFunc = $.fn.axZm.mergeCallBackObj($.axZm.userFunc, {
	onZoom: anOtherOnZoomFunction
});

// or like this when AJAX-ZOOM is already initialized:
$.fn.axZm.addCallback('onZoom', anOtherOnZoomFunction);
Posted by: Guest on December-09-2020

Browse Popular Code Answers by Language