mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-11-02 04:10:11 +00:00
some tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
948abeaa85
commit
32d2ae8828
@ -90,8 +90,8 @@ Roadmap
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
[_] 27% Gen 3 current todo
|
[_] 24% Gen 3 current todo
|
||||||
[_] 54% High priority
|
[_] 49% High priority
|
||||||
[_] usable empty view -- w.o. data...
|
[_] usable empty view -- w.o. data...
|
||||||
[_] 0% Tablet UI
|
[_] 0% Tablet UI
|
||||||
[_] screen buttons
|
[_] screen buttons
|
||||||
@ -163,6 +163,7 @@ Roadmap
|
|||||||
| jumping to end from start of ribbon
|
| jumping to end from start of ribbon
|
||||||
[_] side-by side view...
|
[_] side-by side view...
|
||||||
[_] ASAP: test on Android...
|
[_] ASAP: test on Android...
|
||||||
|
[X] build for windows (node-webkit)
|
||||||
[_] single image mode transition (alpha-blend/fade/none)
|
[_] single image mode transition (alpha-blend/fade/none)
|
||||||
[_] 75% image sorting (date/name/...)
|
[_] 75% image sorting (date/name/...)
|
||||||
[X] 100% sort by:
|
[X] 100% sort by:
|
||||||
|
|||||||
@ -80,9 +80,19 @@ var SCROLLER_ENABLED = true
|
|||||||
|
|
||||||
// setup...
|
// setup...
|
||||||
$(function(){
|
$(function(){
|
||||||
|
// NOTE: keep this as early as possible...
|
||||||
|
$(document)
|
||||||
|
.keydown(makeKeyboardHandler(
|
||||||
|
KEYBOARD_CONFIG,
|
||||||
|
function(k){
|
||||||
|
window.DEBUG && console.log(k)
|
||||||
|
}))
|
||||||
|
|
||||||
// defaults...
|
// defaults...
|
||||||
toggleTheme('gray')
|
toggleTheme('gray')
|
||||||
toggleImageInfo('on')
|
toggleImageInfo('on')
|
||||||
|
// XXX this needs at least an image loaded...
|
||||||
|
//toggleImageProportions('fit-viewer')
|
||||||
|
|
||||||
setupIndicators()
|
setupIndicators()
|
||||||
autoHideCursor($('.viewer'))
|
autoHideCursor($('.viewer'))
|
||||||
@ -107,6 +117,12 @@ $(function(){
|
|||||||
// ...have to benchmark to see which is better...
|
// ...have to benchmark to see which is better...
|
||||||
transitionDuration: 0,
|
transitionDuration: 0,
|
||||||
transitionEasing: 'liner',
|
transitionEasing: 'liner',
|
||||||
|
|
||||||
|
// keep selectable elements selectable...
|
||||||
|
ignoreElements: '.noScroll, '+
|
||||||
|
'.image .inline-image-info, '+
|
||||||
|
'.overlay-info, '+
|
||||||
|
'',
|
||||||
})
|
})
|
||||||
.start()
|
.start()
|
||||||
|
|
||||||
@ -153,13 +169,6 @@ $(function(){
|
|||||||
centerView()
|
centerView()
|
||||||
})
|
})
|
||||||
|
|
||||||
$(document)
|
|
||||||
.keydown(makeKeyboardHandler(
|
|
||||||
KEYBOARD_CONFIG,
|
|
||||||
function(k){
|
|
||||||
window.DEBUG && console.log(k)
|
|
||||||
}))
|
|
||||||
|
|
||||||
setupDataBindings()
|
setupDataBindings()
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -10,6 +10,7 @@
|
|||||||
.expanding-text:hover .shown {
|
.expanding-text:hover .shown {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.expanding-text .shown,
|
||||||
.expanding-text:hover .hidden {
|
.expanding-text:hover .hidden {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -56,6 +56,7 @@
|
|||||||
.expanding-text:hover .shown {
|
.expanding-text:hover .shown {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.expanding-text .shown,
|
||||||
.expanding-text:hover .hidden {
|
.expanding-text:hover .hidden {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user