Skip to content

Instantly share code, notes, and snippets.

View Alujjdnd's full-sized avatar

alujjdnd Alujjdnd

View GitHub Profile
@Alujjdnd
Alujjdnd / index.html
Created August 5, 2019 09:24
Particles background using Particles.js
<div id="particles-js"></div>
<div class="text">
<h1>Particles Background</h1>
<p>Using <a href="https://github.com/VincentGarreau/particles.js/">ParticlesJS</a> and well.. that's about it, actually ¯\_(ツ)_/¯</p>
</div>
@Alujjdnd
Alujjdnd / index.html
Created August 13, 2019 12:04
Virtual Math Keyboard with MathQuill
<p>Type math here: <span id="math-field"></span></p>
<div id="keyboard">
<div class="btn-group" role="group" aria-label="math functions">
<button type="button" class="btn btn-default" onClick='input("\\sqrt")'>√</button>
<button type="button" class="btn btn-default" onClick= 'input("\\sin")'>sin</button>
<button type="button" class="btn btn-default" onClick='input("\\cos")'>cos</button>
<button type="button" class="btn btn-default" onClick='input("\\tan")'>tan</button>
<button type="button" class="btn btn-default" onClick='input("/")'>/</button>
<button type="button" class="btn btn-default" onClick='input("\Pi")'>Pi</button>
<button type="button" class="btn btn-default" onClick='input("\dagger")'>Dagger</button>