logo on home
This commit is contained in:
parent
5c50c3c593
commit
e6c65226d2
1 changed files with 25 additions and 1 deletions
|
@ -268,7 +268,25 @@ pandora.ui.home = function() {
|
||||||
margin: '0 auto 0 auto',
|
margin: '0 auto 0 auto',
|
||||||
opacity: 0
|
opacity: 0
|
||||||
})
|
})
|
||||||
.appendTo($box);
|
.appendTo($box),
|
||||||
|
|
||||||
|
$support = $('<div>').css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: 0,
|
||||||
|
top: '428px',
|
||||||
|
right: 0,
|
||||||
|
bottom: '16px',
|
||||||
|
width: '530px',
|
||||||
|
margin: '0 auto 0 auto',
|
||||||
|
opacity: 0,
|
||||||
|
display: 'none'
|
||||||
|
}).append(
|
||||||
|
$('<img>').attr({src: '/static/png/sd.logo.png'}).css({width: '64px', height: '64px', float: 'left'})
|
||||||
|
).append(
|
||||||
|
//$('<div>').html('“Bu websitesi Sivil Düşün AB Programı Aktivist Desteği kapsamında Avrupa Birliği desteği ile hazırlanmıştır.” “Bu websitesi içeriğinin sorumluluğu tamamıyla bak.ma kolektifi sorumlularına aittir ve AB\'nin görüşlerini yansıtmamaktadır.”')
|
||||||
|
$('<div>').html('“Bu websitesi Sivil Düşün AB Programı Aktivist Desteği kapsamında Avrupa Birliği desteği ile hazırlanmıştır.” “Bu websitesi içeriğinin sorumluluğu tamamıyla Koza Görsel Kültür ve Sanat Derneği\'ne aittir ve AB\'nin görüşlerini yansıtmamaktadır.”')
|
||||||
|
).appendTo($box);
|
||||||
|
|
||||||
|
|
||||||
if (pandora.user.level == 'guest') {
|
if (pandora.user.level == 'guest') {
|
||||||
$signupButton.appendTo($box);
|
$signupButton.appendTo($box);
|
||||||
|
@ -561,6 +579,12 @@ pandora.ui.home = function() {
|
||||||
})
|
})
|
||||||
.appendTo($features);
|
.appendTo($features);
|
||||||
$features.animate({opacity: 1}, 250);
|
$features.animate({opacity: 1}, 250);
|
||||||
|
$support.css({
|
||||||
|
opacity: 0,
|
||||||
|
display: 'block'
|
||||||
|
}).animate({
|
||||||
|
opacity: 1
|
||||||
|
}, 250);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getHTML(item) {
|
function getHTML(item) {
|
||||||
|
|
Loading…
Reference in a new issue