if( $( '#blockID' ).length == 0
|| $( '#blockID' ).css( "display" ) == 'none'
|| parseFloat($( '#blockID' ).css( "opacity" )) != 1.0)
{
// Реклама удалена
}
<div class="home">
...
</div>
html, body {
height: 100%;
position: relative;
width: 100%;
}
.home {
background: url("../images/content/home.jpg") center no-repeat fixed;
height: 100%;
position: relative;
width: 100%;
-khtml-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
-webkit-background-size: cover;
background-size: cover;
}
$(document).ready(
function(){
$(window).resize(function(){
var height = $(window).height();
$('.home').css({
'height':height
});
}).resize();
}
);
id = models.IntegerField ( primary_key=True )
FullName
class Person(models.Model):
full_name = models.CharField( default=u"Иванов И.И.", max_length=256 )
# ...
parent = models.ForeighKey('self', blank=True, null=True)
# or
# parent = models.ForeighKey("Person", blank=True, null=True)
то это перестроение всего одного индекса
from os import path, getenv
#....
# base dir отличается от дефолтного принятого в 1.6
# возможно понадобиться поправить пути в других местах
BASE_DIR = path.abspath(path.join(path.dirname(__file__), '../..'))
#....
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': path.join(BASE_DIR, 'db.sqlite3'),
}
}
sudo apt-get install jpegoptim imagemagick optipng
find . -type f \( -name "*.jpeg" -or -name "*.jpg" \) -exec mogrify -resize x100 -quality 90 {} \; -exec jpegoptim -o --strip-all {} \;
find . -type f -name "*.png" -exec mogrify -resize x100 {} \; -exec optipng -o1 {} \;
mogrify -resize ШИРИНАxВЫСОТА -quality КАЧЕСТВО
optipng -o9 file.png
optipng -o5 file.png
#hei {
height: 100vh; /* 100vh - 100% от высоты viewport(окна браузера) */
}
function setHeiHeight() {
$('#hei').css({
height: $(window).height() + 'px'
});
}
setHeiHeight(); // устанавливаем высоту окна при первой загрузке страницы
$(window).resize( setHeiHeight ); // обновляем при изменении размеров окна