This commit is contained in:
home
2020-03-06 22:16:21 +01:00
parent 8563c3e43d
commit 6d390348d7

View File

@@ -1,30 +1,32 @@
# css\_func\_lib # css\_func\_lib
``` ## install
git submodule add https://git.seemsleg.it/ef/css-func-lib css
```
<link rel="stylesheet" type="text/css" href="/cssjs/admin.css" media="screen" /> git submodule add https://git.seemsleg.it/ef/css-func-lib css
<link rel="stylesheet" type="text/css" href="/cssjs/jquery-ui.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/cssjs/admin.css" media="screen" />
<script src="/cssjs/jquery.min.js"></script> <link rel="stylesheet" type="text/css" href="/cssjs/jquery-ui.min.css" media="screen" />
<script src="/cssjs/jquery-ui.min.js"></script>
<script src="/cssjs/form.js"></script> <script src="/cssjs/jquery.min.js"></script>
``` <script src="/cssjs/jquery-ui.min.js"></script>
<script src="/cssjs/form.js"></script>
# Dropzone ```
```
<form action="/upload" class="dropzone needsclick dz-clickable" id="demo-upload"> ## Dropzone
<div class="dz-message needsclick"> ```
<button type="button" class="dz-button">Drop files here or click to upload.</button><br> <form action="/upload" class="dropzone needsclick dz-clickable" id="demo-upload">
<span class="note needsclick">(This is just a demo dropzone. Selected files are <strong>not</strong> actually uploaded.)</span> <div class="dz-message needsclick">
</div> <button type="button" class="dz-button">Drop files here or click to upload.</button><br>
</form> <span class="note needsclick">(This is just a demo dropzone. Selected files are <strong>not</strong> actually uploaded.)</span>
``` </div>
</form>
# Parallax ```
```
<link rel="stylesheet" href="/css/parallax.css"> ## Parallax
```
... <link rel="stylesheet" href="/css/parallax.css">
<div class="parallax" style="background-image: url(img);">&nbsp;</div> ...
<div class="parallax" style="background-image: url(img);">&nbsp;</div>
``` ```