It is necessary to rotate images from any angle in some applications. Now there is a JQuery plug-in that can be used. Next, let's introduce how to use it. For more information, see, we hope to help introduce jquery below. rotate. js file, and then use $ ("selector "). rotate (angle); can rotate any angle,
For example, $ ("# rotate-image"). rotate (45); Put this sentence in $ (document). ready (function () {});
It is to rotate the image with id rotate-image 45 degrees.
However, it seems that it is always not displayed in Chrome.
Alas, it took two hours to find that Chrome is too boring to get the length and width of the image.
The solution is to put $ ("# rotate-image"). rotate (45); In
$ (Window ). load (function () {});, because the image in Chrome is executing $ (document ). the statement in ready (function () {}); does not load the image.
In addition, you can call $ ("selector") more conveniently "). rotateRight () and $ ("selector "). rotateLeft () to rotate 90 degrees to the right and 90 degrees to the left respectively.
Jquery. rotate. js:
jQuery.fn.rotate = function(angle,whence) { var p = this.get(0); // we store the angle inside the image tag for persistence if (!whence) { p.angle = ((p.angle==undefined?0:p.angle) + angle) % 360; } else { p.angle = angle; } if (p.angle >= 0) { var rotation = Math.PI * p.angle / 180; } else { var rotation = Math.PI * (360+p.angle) / 180; } var costheta = Math.round(Math.cos(rotation) * 1000) / 1000; var sintheta = Math.round(Math.sin(rotation) * 1000) / 1000; //alert(costheta+","+sintheta); if (document.all && !window.opera) { var canvas = document.createElement('img'); canvas.src = p.src; canvas.height = p.height; canvas.width = p.width; canvas.style.filter = "progid:DXImageTransform.Microsoft.Matrix(M11="+costheta+",M12="+(-sintheta)+",M21="+sintheta+",M22="+costheta+",SizingMethod='auto expand')"; } else { var canvas = document.createElement('canvas'); if (!p.oImage) { canvas.oImage = new Image(); canvas.oImage.src = p.src; } else { canvas.oImage = p.oImage; } canvas.style.width = canvas.width = Math.abs(costheta*canvas.oImage.width) + Math.abs(sintheta*canvas.oImage.height); canvas.style.height = canvas.height = Math.abs(costheta*canvas.oImage.height) + Math.abs(sintheta*canvas.oImage.width); var context = canvas.getContext('2d'); context.save(); if (rotation <= Math.PI/2) { context.translate(sintheta*canvas.oImage.height,0); } else if (rotation <= Math.PI) { context.translate(canvas.width,-costheta*canvas.oImage.height); } else if (rotation <= 1.5*Math.PI) { context.translate(-costheta*canvas.oImage.width,canvas.height); } else { context.translate(0,-sintheta*canvas.oImage.width); } context.rotate(rotation); context.drawImage(canvas.oImage, 0, 0, canvas.oImage.width, canvas.oImage.height); context.restore(); } canvas.id = p.id; canvas.angle = p.angle; p.parentNode.replaceChild(canvas, p); } jQuery.fn.rotateRight = function(angle) { this.rotate(angle==undefined?90:angle); } jQuery.fn.rotateLeft = function(angle) { this.rotate(angle==undefined?-90:-angle); }
For more articles about rotating images at any angle and JQuery plug-in usage, please follow the PHP Chinese website!