forked from publiclab/image-sequencer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dragToCrop' of https://github.com/tech4GT/image-sequencer…
… into dragToCrop fixes publiclab#205
- Loading branch information
Showing
10 changed files
with
222 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* imgAreaSelect animated border style | ||
*/ | ||
|
||
.imgareaselect-border1 { | ||
background: url(border-anim-v.gif) repeat-y left top; | ||
} | ||
|
||
.imgareaselect-border2 { | ||
background: url(border-anim-h.gif) repeat-x left top; | ||
} | ||
|
||
.imgareaselect-border3 { | ||
background: url(border-anim-v.gif) repeat-y right top; | ||
} | ||
|
||
.imgareaselect-border4 { | ||
background: url(border-anim-h.gif) repeat-x left bottom; | ||
} | ||
|
||
.imgareaselect-border1, .imgareaselect-border2, | ||
.imgareaselect-border3, .imgareaselect-border4 { | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-handle { | ||
background-color: #fff; | ||
border: solid 1px #000; | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-outer { | ||
background-color: #000; | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-selection { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* imgAreaSelect default style | ||
*/ | ||
|
||
.imgareaselect-border1 { | ||
background: url(border-v.gif) repeat-y left top; | ||
} | ||
|
||
.imgareaselect-border2 { | ||
background: url(border-h.gif) repeat-x left top; | ||
} | ||
|
||
.imgareaselect-border3 { | ||
background: url(border-v.gif) repeat-y right top; | ||
} | ||
|
||
.imgareaselect-border4 { | ||
background: url(border-h.gif) repeat-x left bottom; | ||
} | ||
|
||
.imgareaselect-border1, .imgareaselect-border2, | ||
.imgareaselect-border3, .imgareaselect-border4 { | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-handle { | ||
background-color: #fff; | ||
border: solid 1px #000; | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-outer { | ||
background-color: #000; | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-selection { | ||
} |
36 changes: 36 additions & 0 deletions
36
examples/image-area-select/css/imgareaselect-deprecated.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* imgAreaSelect style to be used with deprecated options | ||
*/ | ||
|
||
.imgareaselect-border1, .imgareaselect-border2, | ||
.imgareaselect-border3, .imgareaselect-border4 { | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-border1 { | ||
border: solid 1px #000; | ||
} | ||
|
||
.imgareaselect-border2 { | ||
border: dashed 1px #fff; | ||
} | ||
|
||
.imgareaselect-handle { | ||
background-color: #fff; | ||
border: solid 1px #000; | ||
filter: alpha(opacity=50); | ||
opacity: 0.5; | ||
} | ||
|
||
.imgareaselect-outer { | ||
background-color: #000; | ||
filter: alpha(opacity=40); | ||
opacity: 0.4; | ||
} | ||
|
||
.imgareaselect-selection { | ||
background-color: #fff; | ||
filter: alpha(opacity=0); | ||
opacity: 0; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters