Update JS and travis (#13)
* delete some REANDOM JavaScriptShit * Update JS and sass * improve sassc * edit travis config
This commit is contained in:
parent
7440d1d964
commit
92db927622
6 changed files with 18 additions and 63 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -48,4 +48,7 @@ assets/css/ie9.css.map
|
||||||
assets/css/main.min.css.map
|
assets/css/main.min.css.map
|
||||||
assets/css/ie9.min.css.map
|
assets/css/ie9.min.css.map
|
||||||
tmp/
|
tmp/
|
||||||
|
libsass/
|
||||||
|
sass-spec/
|
||||||
|
sassc/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ cache:
|
||||||
- $HOME/.cache/pip
|
- $HOME/.cache/pip
|
||||||
before_install:
|
before_install:
|
||||||
- git lfs pull
|
- git lfs pull
|
||||||
- gem install sass
|
- make install-sassc
|
||||||
install:
|
install:
|
||||||
- "pip install Lektor"
|
- "pip install Lektor"
|
||||||
- make sass
|
- make sass
|
||||||
|
|
18
Makefile
18
Makefile
|
@ -3,26 +3,24 @@ LEKTOR_SERVER_FLAGS=-h 127.0.0.1
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
sass:
|
sass:
|
||||||
sass -t compressed ./assets/sass/main.scss ./assets/css/main.min.css
|
./sassc/bin/sassc -t compressed ./assets/sass/main.scss ./assets/css/main.min.css
|
||||||
sass -t compressed ./assets/sass/ie9.scss ./assets/css/ie9.min.css
|
./sassc/bin/sassc -t compressed ./assets/sass/ie9.scss ./assets/css/ie9.min.css
|
||||||
rm ./assets/css/main.min.css.map
|
|
||||||
rm ./assets/css/ie9.min.css.map
|
|
||||||
lektor clean --yes
|
lektor clean --yes
|
||||||
lektor build
|
lektor build
|
||||||
|
|
||||||
sass-uncompressed:
|
sass-uncompressed:
|
||||||
sass ./assets/sass/main.scss ./assets/css/main.css
|
./sassc/bin/sassc ./assets/sass/main.scss ./assets/css/main.css
|
||||||
sass ./assets/sass/ie9.scss ./assets/css/ie9.css
|
./sassc/bin/sassc ./assets/sass/ie9.scss ./assets/css/ie9.css
|
||||||
rm ./assets/css/main.css.map
|
|
||||||
rm ./assets/css/ie9.css.map
|
|
||||||
lektor clean --yes
|
lektor clean --yes
|
||||||
lektor build
|
lektor build
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
if hash apt 2>/dev/null; then sudo apt update; sudo apt install imagemagick python3 python3-pip -y; elif hash pacman 2>/dev/null; then sudo pacman -Sy imagemagick python python-pip --noconfirm; elif hash dnf 2>/dev/null; then sudo dnf install -y ImageMagick python3 python3-pip; else echo -e "Please install Imagemagick, Python3 and Pip!"; fi
|
||||||
pip install lektor --user
|
pip install lektor --user
|
||||||
gem install sass
|
make install-sassc
|
||||||
if hash apt 2>/dev/null; then sudo apt update; sudo apt install imagemagick -y; elif hash pacman 2>/dev/null; then sudo pacman -Sy imagemagick --noconfirm; elif hash dnf 2>/dev/null; then sudo dnf install -y imagemagick; else echo -e "Please install Imagemagick"; fi
|
|
||||||
|
|
||||||
|
install-sassc:
|
||||||
|
if [ ! -d './sassc' ]; then git clone https://github.com/sass/sassc.git sassc; . sassc/script/bootstrap ; make -C sassc -j4 ; fi
|
||||||
|
|
||||||
build: sass
|
build: sass
|
||||||
lektor build
|
lektor build
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
Landed by HTML5 UP
|
Landed by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
|
|
||||||
|
"Cleaned" - aka destroyed and rewritten by L3D.
|
||||||
|
<WARNING> L3D does not know how JavaScript works and just deleted some random lines.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function($) {
|
(function($) {
|
||||||
|
@ -154,53 +158,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Wrappers.
|
|
||||||
var $wrappers = $('.wrapper');
|
|
||||||
|
|
||||||
$wrappers
|
|
||||||
.each(function() {
|
|
||||||
|
|
||||||
var $this = $(this),
|
|
||||||
on, off;
|
|
||||||
|
|
||||||
on = function() {
|
|
||||||
|
|
||||||
if (skel.canUse('transition')) {
|
|
||||||
|
|
||||||
$this.scrollex({
|
|
||||||
top: 120,
|
|
||||||
bottom: 0,
|
|
||||||
initialize: function(t) { $this.addClass('inactive'); },
|
|
||||||
terminate: function(t) { $this.removeClass('inactive'); },
|
|
||||||
enter: function(t) { $this.removeClass('inactive'); },
|
|
||||||
|
|
||||||
// Uncomment the line below to "rewind" when this wrapper scrolls out of view.
|
|
||||||
|
|
||||||
//leave: function(t) { $this.addClass('inactive'); },
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
off = function() {
|
|
||||||
|
|
||||||
if (skel.canUse('transition'))
|
|
||||||
$this.unscrollex();
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
skel.on('change', function() {
|
|
||||||
|
|
||||||
if (skel.breakpoint('medium').active)
|
|
||||||
(off)();
|
|
||||||
else
|
|
||||||
(on)();
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// Banner.
|
// Banner.
|
||||||
var $banner = $('#banner');
|
var $banner = $('#banner');
|
||||||
|
|
|
@ -278,9 +278,7 @@ Wenn Sie unsere Kritik an der geplanten Urheberrechtsreform teilen, werden Sie a
|
||||||
<script src="{{ '/js/jquery.scrolly.min.js'|asseturl }}"></script>
|
<script src="{{ '/js/jquery.scrolly.min.js'|asseturl }}"></script>
|
||||||
<script src="{{ '/js/jquery.scrollex.min.js'|asseturl }}"></script>
|
<script src="{{ '/js/jquery.scrollex.min.js'|asseturl }}"></script>
|
||||||
<script src="{{ '/js/skel.min.js'|asseturl }}"></script>
|
<script src="{{ '/js/skel.min.js'|asseturl }}"></script>
|
||||||
<script src="{{ '/js/util.js'|asseturl }}"></script>{%
|
<script src="{{ '/js/util.js'|asseturl }}"></script>
|
||||||
block mainjs %}
|
<script src="{{ '/js/main.js'|asseturl }}"></script>
|
||||||
<script src="{{ '/js/main.js'|asseturl }}"></script>{%
|
|
||||||
endblock %}
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
{% block title
|
{% block title
|
||||||
%}{{ this.title }}{%
|
%}{{ this.title }}{%
|
||||||
endblock %}
|
endblock %}
|
||||||
{% block mainjs %}{% endblock %}
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<section id="four" class="wrapper style1 special fade-up">
|
<section id="four" class="wrapper style1 special fade-up">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
Loading…
Reference in a new issue