JS防PS里的图片拖拉缩放效果代码

代码简介:

图片拖拉缩放效果(仿PHOTOSHOP),只是没有PS那么强大,不过也凑合,可以拉,先学习一下吧。

代码内容:

View Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-

transitional.dtd"
>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JS防PS里的图片拖拉缩放效果代码 - www.webdm.cn</title>
<style type"text/css">
<!--
body
{zoom:50%;}
img
{width:200px; height:42px;margin-bottom:2000px}
.con
{ width:500px; height:200px;position:relative; overflow:hidden; border:1px dashed #F3F3F3}
-->
</style>
</head>
<body>
<p style="font-size=30px;">图片拖拽放大</p>
<div class="con" contentEditable=true>
<img src="http://www.webdm.cn/images/wall2_s.jpg" >
</div>
</body>
</html>
<br />
<p><a href="http://www.webdm.cn">网页代码站</a> - 最专业的网页代码下载网站 - 致力为中国站长提供有质量的网页代码!

</p>

代码来自:http://www.webdm.cn/webcode/0f257451-173a-4a08-9081-c4f6549342e9.html

原文地址:https://www.cnblogs.com/webdm/p/2311842.html