本文实例为大家展示了图片旋转、鼠标滚轮缩放、镜像、切换图片多重效果,提供了详细的代码,分享给大家供大家参考,具体内容如下
具体代码:
<!DOCTYPE html> <html lang="zh-cn"> <head> <title>图片旋转,鼠标滚轮缩放,镜像,切换图片</title> <meta charset="utf-8" /> <!--<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>--> <script type="text/javascript" src="js/abc.js"></script> </head> <body> <h1 id="效果预览">效果预览</h1> <script> //容器对象 var ImageTrans = function(container, options) { this._initialize(container, options); this._initMode(); if (this._support) { this._initContainer(); this._init(); } else { //模式不支持 this.onError("not support"); } }; ImageTrans.prototype = { //初始化程序 _initialize: function(container, options) { var container = this._container = $$(container); this._clientWidth = container.clientWidth; //变换区域宽度 this._clientHeight = container.clientHeight; //变换区域高度 this._img = new Image(); //图片对象 this._style = {}; //备份样式 this._x = this._y = 1; //水平/垂直变换参数 this._radian = 0; //旋转变换参数 this._support = false; //是否支持变换 this._init = this._load = this._show = this._dispose = $$.emptyFunction; var opt = this._setOptions(options); this._zoom = opt.zoom; this.onPreLoad = opt.onPreLoad; this.onLoad = opt.onLoad; this.onError = opt.onError; this._LOAD = $$F.bind(function() { this.onLoad(); this._load(); this.reset(); this._img.style.visibility = "visible"; }, this); $$CE.fireEvent(this, "init"); }, //设置默认属性 _setOptions: function(options) { this.options = { //默认值 mode: "css3|filter|canvas", zoom: .1, //缩放比率 onPreLoad: function() {}, //图片加载前执行 onLoad: function() {}, //图片加载后执行 onError: function(err) {} //出错时执行 }; return $$.extend(this.options, options || {}); }, //模式设置 _initMode: function() { var modes = ImageTrans.modes; this._support = $$A.some(this.options.mode.toLowerCase().split("|"), function(mode) { mode = modes[mode]; if (mode && mode.support) { mode.init && (this._init = mode.init); //初始化执行程序 mode.load && (this._load = mode.load); //加载图片执行程序 mode.show && (this._show = mode.show); //变换显示程序 mode.dispose && (this._dispose = mode.dispose); //销毁程序 //扩展变换方法 $$A.forEach(ImageTrans.transforms, function(transform, name) { this[name] = function() { transform.apply(this, [].slice.call(arguments)); this._show(); } }, this); return true; } }, this); }, //初始化容器对象 _initContainer: function() { var container = this._container, style = container.style, position = $$D.getStyle(container, "position"); this._style = { "position": style.position, "overflow": style.overflow }; //备份样式 if (position != "relative" && position != "absolute") { style.position = "relative"; } style.overflow = "hidden"; $$CE.fireEvent(this, "initContainer"); }, //加载图片 load: function(src) { if (this._support) { var img = this._img, oThis = this; img.onload || (img.onload = this._LOAD); img.onerror || (img.onerror = function() { oThis.onError("err image"); }); img.style.visibility = "hidden"; this.onPreLoad(); img.src = src; } }, //重置 reset: function() { if (this._support) { this._x = this._y = 1; this._radian = 0; this._show(); } }, //销毁程序 dispose: function() { if (this._support) { this._dispose(); $$CE.fireEvent(this, "dispose"); $$D.setStyle(this._container, this._style); //恢复样式 this._container = this._img = this._img.onload = this._img.onerror = this._LOAD = null; } } }; //变换模式 ImageTrans.modes = function() { var css3Transform; //ccs3变换样式 //初始化图片对象函数 function initImg(img, container) { $$D.setStyle(img, { position: "absolute", border: 0, padding: 0, margin: 0, width: "auto", height: "auto", //重置样式 visibility: "hidden" //加载前隐藏 }); container.appendChild(img); } //获取变换参数函数 function getMatrix(radian, x, y) { var Cos = Math.cos(radian), Sin = Math.sin(radian); return { M11: Cos * x, M12: -Sin * y, M21: Sin * x, M22: Cos * y }; } return { css3: { //css3设置 support: function() { var style = document.createElement("div").style; return $$A.some( ["transform", "MozTransform", "webkitTransform", "OTransform"], function(css) { if (css in style) { css3Transform = css; return true; } }); }(), init: function() { initImg(this._img, this._container); }, load: function() { var img = this._img; $$D.setStyle(img, { //居中 top: (this._clientHeight - img.height) / 2 + "px", left: (this._clientWidth - img.width) / 2 + "px", visibility: "visible" }); }, show: function() { var matrix = getMatrix(this._radian, this._y, this._x); //设置变形样式 this._img.style[css3Transform] = "matrix(" + matrix.M11.toFixed(16) + "," + matrix.M21.toFixed(16) + "," + matrix.M12.toFixed(16) + "," + matrix.M22.toFixed(16) + ", 0, 0)"; }, dispose: function() { this._container.removeChild(this._img); } }, filter: { //滤镜设置 support: function() { return "filters" in document.createElement("div"); }(), init: function() { initImg(this._img, this._container); //设置滤镜 this._img.style.filter = "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand')"; }, load: function() { this._img.onload = null; //防止ie重复加载gif的bug this._img.style.visibility = "visible"; }, show: function() { var img = this._img; //设置滤镜 $$.extend( img.filters.item("DXImageTransform.Microsoft.Matrix"), getMatrix(this._radian, this._y, this._x) ); //保持居中 img.style.top = (this._clientHeight - img.offsetHeight) / 2 + "px"; img.style.left = (this._clientWidth - img.offsetWidth) / 2 + "px"; }, dispose: function() { this._container.removeChild(this._img); } }, canvas: { //canvas设置 support: function() { return "getContext" in document.createElement('canvas'); }(), init: function() { var canvas = this._canvas = document.createElement('canvas'), context = this._context = canvas.getContext('2d'); //样式设置 $$D.setStyle(canvas, { position: "absolute", left: 0, top: 0 }); canvas.width = this._clientWidth; canvas.height = this._clientHeight; this._container.appendChild(canvas); }, show: function() { var img = this._img, context = this._context, clientWidth = this._clientWidth, clientHeight = this._clientHeight; //canvas变换 context.save(); context.clearRect(0, 0, clientWidth, clientHeight); //清空内容 context.translate(clientWidth / 2, clientHeight / 2); //中心坐标 context.rotate(this._radian); //旋转 context.scale(this._y, this._x); //缩放 context.drawImage(img, -img.width / 2, -img.height / 2); //居中画图 context.restore(); }, dispose: function() { this._container.removeChild(this._canvas); this._canvas = this._context = null; } } }; }(); //变换方法 ImageTrans.transforms = { //垂直翻转 vertical: function() { this._radian = Math.PI - this._radian; this._y *= -1; }, //水平翻转 horizontal: function() { this._radian = Math.PI - this._radian; this._x *= -1; }, //根据弧度旋转 rotate: function(radian) { this._radian = radian; }, //向左转90度 left: function() { this._radian -= Math.PI / 2; }, //向右转90度 right: function() { this._radian += Math.PI / 2; }, //根据角度旋转 rotatebydegress: function(degress) { this._radian = degress * Math.PI / 180; }, //缩放 scale: function() { function getZoom(scale, zoom) { return scale > 0 && scale > -zoom ? zoom : scale < 0 && scale < zoom ? -zoom : 0; } return function(zoom) { if (zoom) { var hZoom = getZoom(this._y, zoom), vZoom = getZoom(this._x, zoom); if (hZoom && vZoom) { this._y += hZoom; this._x += vZoom; } } } }(), //放大 zoomin: function() { this.scale(Math.abs(this._zoom)); }, //缩小 zoomout: function() { this.scale(-Math.abs(this._zoom)); } }; //拖动旋转 ImageTrans.prototype._initialize = (function() { var init = ImageTrans.prototype._initialize, methods = { "init": function() { this._mrX = this._mrY = this._mrRadian = 0; this._mrSTART = $$F.bind(start, this); this._mrMOVE = $$F.bind(move, this); this._mrSTOP = $$F.bind(stop, this); }, "initContainer": function() { $$E.addEvent(this._container, "mousedown", this._mrSTART); }, "dispose": function() { $$E.removeEvent(this._container, "mousedown", this._mrSTART); this._mrSTOP(); this._mrSTART = this._mrMOVE = this._mrSTOP = null; } }; //开始函数 function start(e) { var rect = $$D.clientRect(this._container); this._mrX = rect.left + this._clientWidth / 2; this._mrY = rect.top + this._clientHeight / 2; this._mrRadian = Math.atan2(e.clientY - this._mrY, e.clientX - this._mrX) - this._radian; $$E.addEvent(document, "mousemove", this._mrMOVE); $$E.addEvent(document, "mouseup", this._mrSTOP); if ($$B.ie) { var container = this._container; $$E.addEvent(container, "losecapture", this._mrSTOP); container.setCapture(); } else { $$E.addEvent(window, "blur", this._mrSTOP); e.preventDefault(); } }; //拖动函数 function move(e) { this.rotate(Math.atan2(e.clientY - this._mrY, e.clientX - this._mrX) - this._mrRadian); window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty(); }; //停止函数 function stop() { $$E.removeEvent(document, "mousemove", this._mrMOVE); $$E.removeEvent(document, "mouseup", this._mrSTOP); if ($$B.ie) { var container = this._container; $$E.removeEvent(container, "losecapture", this._mrSTOP); container.releaseCapture(); } else { $$E.removeEvent(window, "blur", this._mrSTOP); }; }; return function() { var options = arguments[1]; if (!options || options.mouseRotate !== false) { //扩展钩子 $$A.forEach(methods, function(method, name) { $$CE.addEvent(this, name, method); }, this); } init.apply(this, arguments); } })(); //滚轮缩放 ImageTrans.prototype._initialize = (function() { var init = ImageTrans.prototype._initialize, mousewheel = $$B.firefox ? "DOMMouseScroll" : "mousewheel", methods = { "init": function() { this._mzZoom = $$F.bind(zoom, this); }, "initContainer": function() { $$E.addEvent(this._container, mousewheel, this._mzZoom); }, "dispose": function() { $$E.removeEvent(this._container, mousewheel, this._mzZoom); this._mzZoom = null; } }; //缩放函数 function zoom(e) { this.scale(( e.wheelDelta ? e.wheelDelta / (-120) : (e.detail || 0) / 3 ) * Math.abs(this._zoom)); e.preventDefault(); }; return function() { var options = arguments[1]; if (!options || options.mouseZoom !== false) { //扩展钩子 $$A.forEach(methods, function(method, name) { $$CE.addEvent(this, name, method); }, this); } init.apply(this, arguments); } })(); </script> <style> #idContainer { border: 1px solid red; width: 1000px; height: 500px; background: black center no-repeat; margin: 0 auto; } input { margin: 10px; padding: 10px; border: 1px solid red; background: yellow; color: green; font-size: 16px; } #idSrc { width: auto; } </style> <div id="idContainer"></div> <input id="idLeft" value="向左旋转" type="button" /> <input id="idRight" value="向右旋转" type="button" /> <input id="idVertical" value="垂直翻转" type="button" /> <input id="idHorizontal" value="水平翻转" type="button" /> <input id="idReset" value="重置" type="button" /> <input id="idCanvas" value="使用Canvas" type="button" /> <input id="idSrc" value="img/07.jpg" type="text" /> <input id="idLoad" value="换图" type="button" /> <script> (function() { var container = $$("idContainer"), src = "img/7.jpg", options = { onPreLoad: function() { container.style.backgroundImage = "url('http://images.cnblogs.com/cnblogs_com/cloudgamer/169629/o_loading.gif')"; }, onLoad: function() { container.style.backgroundImage = ""; }, onError: function(err) { container.style.backgroundImage = ""; alert(err); } }, it = new ImageTrans(container, options); it.load(src); //垂直翻转 $$("idVertical").onclick = function() { it.vertical(); } //水平翻转 $$("idHorizontal").onclick = function() { it.horizontal(); } //左旋转 $$("idLeft").onclick = function() { it.left(); } //右旋转 $$("idRight").onclick = function() { it.right(); } //重置 $$("idReset").onclick = function() { it.reset(); } //换图 $$("idLoad").onclick = function() { it.load($$("idSrc").value); } //Canvas $$("idCanvas").onclick = function() { if (this.value == "默认模式") { this.value = "使用Canvas"; delete options.mode; } else { this.value = "默认模式"; options.mode = "canvas"; } it.dispose(); it = new ImageTrans(container, options); it.load(src); } })() </script> </body> </html>
abc.js
eval(function(p, a, c, k, e, r) { e = function(c) { return (c < 62 ? '' : e(parseInt(c / 62))) + ((c = c % 62) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if ('0'.replace(0, e) == 0) { while (c--) r[e(c)] = k[c]; k = [function(e) { return r[e] || e }]; e = function() { return '([3-59cf-hj-mo-rt-yCG-NP-RT-Z]|[12]\\w)' }; c = 1 }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p }('4 $$,$$B,$$A,$$F,$$D,$$E,$$CE,$$S;(3(1K){4 O,B,A,F,D,E,CE,S;O=3(id){5"2f"==1L id?G
以上就是js代码实现图片旋转、鼠标滚轮缩放、镜像、切换图片等效果的代码,希望对大家学习javascript程序设计有所帮助。

개발 환경에서 Python과 JavaScript의 선택이 모두 중요합니다. 1) Python의 개발 환경에는 Pycharm, Jupyternotebook 및 Anaconda가 포함되어 있으며 데이터 과학 및 빠른 프로토 타이핑에 적합합니다. 2) JavaScript의 개발 환경에는 Node.js, VScode 및 Webpack이 포함되어 있으며 프론트 엔드 및 백엔드 개발에 적합합니다. 프로젝트 요구에 따라 올바른 도구를 선택하면 개발 효율성과 프로젝트 성공률이 향상 될 수 있습니다.

예, JavaScript의 엔진 코어는 C로 작성되었습니다. 1) C 언어는 효율적인 성능과 기본 제어를 제공하며, 이는 JavaScript 엔진 개발에 적합합니다. 2) V8 엔진을 예를 들어, 핵심은 C로 작성되며 C의 효율성 및 객체 지향적 특성을 결합하여 C로 작성됩니다.

JavaScript는 웹 페이지의 상호 작용과 역학을 향상시키기 때문에 현대 웹 사이트의 핵심입니다. 1) 페이지를 새로 고치지 않고 콘텐츠를 변경할 수 있습니다. 2) Domapi를 통해 웹 페이지 조작, 3) 애니메이션 및 드래그 앤 드롭과 같은 복잡한 대화식 효과를 지원합니다. 4) 성능 및 모범 사례를 최적화하여 사용자 경험을 향상시킵니다.

C 및 JavaScript는 WebAssembly를 통한 상호 운용성을 달성합니다. 1) C 코드는 WebAssembly 모듈로 컴파일되어 컴퓨팅 전력을 향상시키기 위해 JavaScript 환경에 도입됩니다. 2) 게임 개발에서 C는 물리 엔진 및 그래픽 렌더링을 처리하며 JavaScript는 게임 로직 및 사용자 인터페이스를 담당합니다.

JavaScript는 웹 사이트, 모바일 응용 프로그램, 데스크탑 응용 프로그램 및 서버 측 프로그래밍에서 널리 사용됩니다. 1) 웹 사이트 개발에서 JavaScript는 HTML 및 CSS와 함께 DOM을 운영하여 동적 효과를 달성하고 jQuery 및 React와 같은 프레임 워크를 지원합니다. 2) 반응 및 이온 성을 통해 JavaScript는 크로스 플랫폼 모바일 애플리케이션을 개발하는 데 사용됩니다. 3) 전자 프레임 워크를 사용하면 JavaScript가 데스크탑 애플리케이션을 구축 할 수 있습니다. 4) node.js는 JavaScript가 서버 측에서 실행되도록하고 동시 요청이 높은 높은 요청을 지원합니다.

Python은 데이터 과학 및 자동화에 더 적합한 반면 JavaScript는 프론트 엔드 및 풀 스택 개발에 더 적합합니다. 1. Python은 데이터 처리 및 모델링을 위해 Numpy 및 Pandas와 같은 라이브러리를 사용하여 데이터 과학 및 기계 학습에서 잘 수행됩니다. 2. 파이썬은 간결하고 자동화 및 스크립팅이 효율적입니다. 3. JavaScript는 프론트 엔드 개발에 없어서는 안될 것이며 동적 웹 페이지 및 단일 페이지 응용 프로그램을 구축하는 데 사용됩니다. 4. JavaScript는 Node.js를 통해 백엔드 개발에 역할을하며 전체 스택 개발을 지원합니다.

C와 C는 주로 통역사와 JIT 컴파일러를 구현하는 데 사용되는 JavaScript 엔진에서 중요한 역할을합니다. 1) C는 JavaScript 소스 코드를 구문 분석하고 추상 구문 트리를 생성하는 데 사용됩니다. 2) C는 바이트 코드 생성 및 실행을 담당합니다. 3) C는 JIT 컴파일러를 구현하고 런타임에 핫스팟 코드를 최적화하고 컴파일하며 JavaScript의 실행 효율을 크게 향상시킵니다.

실제 세계에서 JavaScript의 응용 프로그램에는 프론트 엔드 및 백엔드 개발이 포함됩니다. 1) DOM 운영 및 이벤트 처리와 관련된 TODO 목록 응용 프로그램을 구축하여 프론트 엔드 애플리케이션을 표시합니다. 2) Node.js를 통해 RESTFULAPI를 구축하고 Express를 통해 백엔드 응용 프로그램을 시연하십시오.


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

SublimeText3 Linux 새 버전
SublimeText3 Linux 최신 버전

MinGW - Windows용 미니멀리스트 GNU
이 프로젝트는 osdn.net/projects/mingw로 마이그레이션되는 중입니다. 계속해서 그곳에서 우리를 팔로우할 수 있습니다. MinGW: GCC(GNU Compiler Collection)의 기본 Windows 포트로, 기본 Windows 애플리케이션을 구축하기 위한 무료 배포 가능 가져오기 라이브러리 및 헤더 파일로 C99 기능을 지원하는 MSVC 런타임에 대한 확장이 포함되어 있습니다. 모든 MinGW 소프트웨어는 64비트 Windows 플랫폼에서 실행될 수 있습니다.

Atom Editor Mac 버전 다운로드
가장 인기 있는 오픈 소스 편집기

mPDF
mPDF는 UTF-8로 인코딩된 HTML에서 PDF 파일을 생성할 수 있는 PHP 라이브러리입니다. 원저자인 Ian Back은 자신의 웹 사이트에서 "즉시" PDF 파일을 출력하고 다양한 언어를 처리하기 위해 mPDF를 작성했습니다. HTML2FPDF와 같은 원본 스크립트보다 유니코드 글꼴을 사용할 때 속도가 느리고 더 큰 파일을 생성하지만 CSS 스타일 등을 지원하고 많은 개선 사항이 있습니다. RTL(아랍어, 히브리어), CJK(중국어, 일본어, 한국어)를 포함한 거의 모든 언어를 지원합니다. 중첩된 블록 수준 요소(예: P, DIV)를 지원합니다.

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)
