<html>
<head>
<title>www.tutorials.de</title>
<meta name="author" content="Quaese">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<style type="text/css">
<!--
.ui-wrapper{
padding: 4px;
}
.ui-resizable{
border: 1px dashed #000;
}
.ui-resizable-handle{
border: 1px solid #000 !important; background-color: #ccc; width: 8px; height: 8px;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
opacity: 0.6;
}
.ui-resizable-n { left: 50%; margin-left: -3px; top: 1px;}
.ui-resizable-s { left: 50%; margin-left: -3px; bottom: 1px; }
.ui-resizable-e { top: 50%; margin-top: -3px; right: 1px; }
.ui-resizable-w { top: 50%; margin-top: -3px; left: 1px; }
.ui-resizable-se { bottom: 1px; right: 1px; }
.ui-resizable-sw { bottom: 1px; left: 1px; }
.ui-resizable-nw { top: 1px; left: 1px; }
.ui-resizable-ne { top: 1px; right: 1px; }
//-->
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
$(function(){
$("#img_resize").resizable({
handles: 'n, e, s, w, ne, se, sw, nw'
});
});
//-->
</script>
</head>
<body>
<img id="img_resize" src="bild.jpg" width="120" height="120">
</body>
</html>