Use any image with this. The image does not have to be round and can be any size but it should have an aspect ratio of 1:1.
Just a variation of my other pen: Water Drop Circle Effect as CSS3 Animation
A Pen by Jascha Goltermann on CodePen.
| //const tpl = makeTemplate('hello ${name}') | |
| //const name = 'world'; | |
| //tpl({name}); | |
| const makeTemplate = (templateString) => { | |
| return (templateData) => new Function(`{${Object.keys(templateData).join(',')}}`, 'return `' + templateString + '`')(templateData); | |
| } |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console | |
| let f = (a, b) => { return a+b; } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Ember Starter Kit</title> | |
| <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/2.1.0/normalize.css"> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| <script src="http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v1.3.0.js"></script> | |
| <script src="http://builds.emberjs.com/tags/v1.8.0/ember.js"></script> | |
| <style id="jsbin-css"> |
Use any image with this. The image does not have to be round and can be any size but it should have an aspect ratio of 1:1.
Just a variation of my other pen: Water Drop Circle Effect as CSS3 Animation
A Pen by Jascha Goltermann on CodePen.
| from flask import Flask | |
| from flask.ext.sqlalchemy import SQLAlchemy | |
| from flask.ext import admin | |
| from wtforms import TextAreaField | |
| from wtforms.widgets import TextArea | |
| from flask.ext.admin.contrib.sqla import ModelView | |
| app = Flask(__name__) | |
| app.config['SECRET_KEY'] = '123456790' |