Bilder Resizing mit Prototype

tobee

Erfahrenes Mitglied
Ich bin auf meiner einstündigen Suche nach einem Bilder Resize Skript endlich fündig geworden: http://www.skybyte.net/scripts/resize/
Leider basiert dieses Skript auf prototype.
Darum wollte ich euch fragen ob ihr ein ähnliches Skript auf Basis von jQuery oder mootools kennt.

Danke
 
Hi,

hast du dir Svens Link schon mal angesehen?

Damit lässt sich relativ einfach das von dir gewünschte erstellen. Dabei handelt es sich hauptsächlich um das Anpassen der CSS-Deklarationen.
Code:
<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>

Ciao
Quaese
 

Neue Beiträge

Zurück