forked from musella/php-plots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.js
29 lines (27 loc) · 774 Bytes
/
style.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var myAnim = function() {
var animWidth, $this=$(this);
if( $this.parent().hasClass('ui-sortable-helper') ) {
return;
}
if( $this.hasClass('wide') ){
animWidth="40ex";
if( $this.hasClass('thumb') ) {
/// this.src = this.src.replace(".","_thumb.");
this.src = this.src.substring( 0, this.src.lastIndexOf(".") ) + "_thumb" + this.src.substring( this.src.lastIndexOf(".") );
}
}else{
animWidth="80ex";
if( this.src.indexOf("_thumb" ) != -1){
$this.addClass('thumb');
}
this.src = this.src.replace("_thumb","");
}
$this.toggleClass('wide').animate({width: animWidth}, "fast");
}
$(document).ready(function(){
$("img").click(myAnim);
$("img").dblclick(myAnim);
$( "#piccont" ).sortable({
revert: true
});
});