update padma home screen

This commit is contained in:
rolux 2013-02-19 13:58:53 +00:00
parent c624f419f7
commit 4d4f391af0

View file

@ -12,17 +12,17 @@ pandora.ui.home = function() {
width: '100%', width: '100%',
height: '100%', height: '100%',
opacity: 0, opacity: 0,
overflowY: 'auto',
zIndex: 1001 zIndex: 1001
}), }),
$box = $('<div>') $box = $('<div>')
.css({ .css({
position: 'absolute', position: 'absolute',
left: 0, left: 0,
top: 0, top: '80px',
right: 0, right: 0,
bottom: 0,
width: '560px', width: '560px',
margin: window.innerHeight / 2 - 80 + 'px auto 0 auto' margin: '0 auto 0 auto'
}) })
.appendTo(that), .appendTo(that),
$reflectionImage = $('<img>') $reflectionImage = $('<img>')
@ -52,7 +52,10 @@ pandora.ui.home = function() {
margin: '0 auto 0 auto', margin: '0 auto 0 auto',
}) })
.appendTo($box), .appendTo($box),
$logo = $('<img>') $logo = Ox.Element({
element: '<img>',
tooltip: 'Enter ' + pandora.site.site.name
})
.attr({ .attr({
id: 'logo', id: 'logo',
src: '/static/png/logo.png' src: '/static/png/logo.png'
@ -267,7 +270,8 @@ pandora.ui.home = function() {
$label, $icon, $text, $label, $icon, $text,
$listsBox, $listsContainer, $listsContent, $listsBox, $listsContainer, $listsContent,
$listBox = [], $listIcon = [], $listBox = [], $listIcon = [],
$previousButton, $nextButton; $previousButton, $nextButton,
$space;
$lists.empty(); $lists.empty();
if (lists.length) { if (lists.length) {
$label = Ox.Label({ $label = Ox.Label({
@ -493,6 +497,16 @@ pandora.ui.home = function() {
.appendTo($listBox[i]); .appendTo($listBox[i]);
}); });
} }
$space = $('<div>')
.css({
position: 'absolute',
top: lists.length == 0 ? '0px'
: lists.length == 1 ? '150px'
: '215px',
width: '560px',
height: '80px'
})
.appendTo($lists);
$lists.animate({opacity: 1}, 250); $lists.animate({opacity: 1}, 250);
} }
function openList(i) { function openList(i) {
@ -570,7 +584,7 @@ pandora.ui.home = function() {
} }
that.fadeInScreen = function() { that.fadeInScreen = function() {
$box.css({marginTop: '80px'}); // $box.css({marginTop: '80px'});
that.appendTo(Ox.UI.$body).animate({opacity: 1}, 500, function() { that.appendTo(Ox.UI.$body).animate({opacity: 1}, 500, function() {
that.find('*').animate({opacity: 1}, 250, function() { that.find('*').animate({opacity: 1}, 250, function() {
$findInput.focusInput(true); $findInput.focusInput(true);
@ -581,6 +595,7 @@ pandora.ui.home = function() {
}; };
that.fadeOutScreen = function() { that.fadeOutScreen = function() {
$('.OxTooltip').remove();
that.animate({opacity: 0}, 500, function() { that.animate({opacity: 0}, 500, function() {
that.remove(); that.remove();
}); });
@ -591,7 +606,7 @@ pandora.ui.home = function() {
that.showScreen = function(callback) { that.showScreen = function(callback) {
that.css({opacity: 1}).appendTo(Ox.UI.$body); that.css({opacity: 1}).appendTo(Ox.UI.$body);
$box.css({marginTop: '80px'}); // $box.css({marginTop: '80px'});
that.find('*').css({opacity: 1}); that.find('*').css({opacity: 1});
$findInput.focusInput(true); $findInput.focusInput(true);
showLists(); showLists();