Getting started:
Related tutorials:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| </head> | |
| <body> | |
| <div id="textdiv"> | |
| <h1>Lorem ipsum</h1> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur porta dictum turpis, eu mollis justo gravida ac. Proin non eros blandit, rutrum est a, cursus quam.</p> |
| # -*- coding: utf-8 -*- | |
| # Settings | |
| from django.conf import settings | |
| settings.configure( | |
| DEBUG=True, | |
| SECRET_KEY='secretfoobar', | |
| ROOT_URLCONF=__name__, |
Getting started:
Related tutorials:
| (function () { | |
| particlesJS.load('particles', 'src/js/particles.json'); | |
| // document.oncontextmenu = function () { | |
| // return false; | |
| // } | |
| }()); |
| // To use particles.js in HTML: | |
| // <div id="particles-js"></div> | |
| // <script src="particles.js"></script> | |
| // Or if not hosted by yourself then: | |
| // <script src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js" charset="utf-8"></script> | |
| // <script src="src/js/global.js"></script> | |
| // To use in app.js: |
| var src = "___library/7-kazan/1/*"; | |
| var dst = "_ready"; | |
| var gulp = require('gulp'), | |
| imagemin = require('gulp-imagemin'), | |
| cache = require('gulp-cache'), | |
| del = require('del'), | |
| imageResize = require('gulp-image-resize'), | |
| watermark = require("gulp-watermark"), | |
| rename = require("gulp-rename"); |
| $(".city-input").keyup(function() { | |
| filter(this); | |
| }); | |
| function filter(element) { | |
| var value = $(element).val().toLowerCase(); | |
| $("[data-filter]").each(function () { | |
| var $this = $(this), | |
| lower = $this.data("filter").toLowerCase(); | |
| if (lower.indexOf(value) > -1) { | |
| $this.show(); |
| onRefresh: function () { | |
| owl.find('div.owl-item').height(''); | |
| }, | |
| onRefreshed: function () { | |
| owl.find('div.owl-item').height(owl.height()); | |
| } |