Skip to content

Instantly share code, notes, and snippets.

View AndrewRMillar's full-sized avatar

Andrew Millar AndrewRMillar

View GitHub Profile
@Kvaibhav01
Kvaibhav01 / anime.js
Last active September 20, 2019 07:41
JS code for AnimeJS demo
var btn = document.getElementById('cta');
var btn2 = document.getElementById('cta2');
btn.onclick = function () {
var morphing = anime({
targets: '.polymorph',
points: [
{ value: '215, 110 0, 110 0, 0 47.7, 0 67, 76' },
{ value: '215, 110 0, 110 0, 0 0, 0 67, 76' }
],
@joyrexus
joyrexus / README.md
Last active December 14, 2025 02:33 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})