Skip to content

Instantly share code, notes, and snippets.

View melanyss's full-sized avatar
🚀
Building awesome projects

Melanys melanyss

🚀
Building awesome projects
View GitHub Profile
<!--
================================================================================
STRIPE EXPRESS CHECKOUT TEMPLATE
Google Pay & Apple Pay Implementation for Experimentation Platforms
================================================================================
Author: Melanys Figueredo
Version: 1.0.0
Last Updated: 25/01/2026
@melanyss
melanyss / animated-star-rating.markdown
Last active June 7, 2024 09:52
Animated Star Rating

Animated Star Rating

A star rating where stars pop out one by one if you choose a higher rating.

A Pen on CodePen.

License.

@melanyss
melanyss / index.html
Created May 29, 2021 12:52
Quotes animation
<div id="wrapper">
<div id="canvas_container"></div>
<div class="text">
<p class="quoteText">“ Never memorize something that you can look
up.”<br><span style="font-style: italic; font-size: 1.4rem; color:#ED760D">#Stack Overflow</span></p>
</div>
<p class="clickInfo">click anywhere to start journey</p>
@melanyss
melanyss / index.html
Created December 23, 2020 14:10
Pure CSS Cyberpunk 2077 Buttons 😎
<button class="cybr-btn">
Cyber<span aria-hidden>_</span>
<span aria-hidden class="cybr-btn__glitch">Cyber_</span>
<span aria-hidden class="cybr-btn__tag">R25</span>
</button>
<button class="cybr-btn">
Buttons<span aria-hidden>_</span>
<span aria-hidden class="cybr-btn__glitch">Buttons_</span>
<span aria-hidden class="cybr-btn__tag">R25</span>
</button>
{
"name": "fcc-learn-npm-package-json",
"author": "Melanys Figueredo",
"version": "0.1.0"
}
@melanyss
melanyss / Jquery Ajax
Created November 21, 2020 16:21 — forked from JonnyNineToes/Jquery Ajax
Quick template for Jquery Ajax calls
// submit is an action performed ON THE FORM ITSELF...
// probably best to give the form an ID attribute and refer to it by that
$('form').submit( function (event) {
// prevent the usual form submission behaviour; the "action" attribute of the form
event.preventDefault();
// validation goes below...
// now for the big event
$.ajax({
// the server script you want to send your data to
@melanyss
melanyss / jquery.snippets.js
Created November 16, 2020 11:43 — forked from avireni/jquery.snippets.js
Jquery + JS snippets
Check if and which key was pressed
$(function() {
$(document).keypress(function(e){
switch(e.which){
// "ENTER"
case 13:
alert('enter pressed');
break;
// "s"
@melanyss
melanyss / index.html
Created October 27, 2020 19:07
WebGL particle head
<!--
WebGL particle head for a clients website.
See the full result on fremtidenshoder.no.
Made with three.js
-->
<div class="particlehead"></div>
<h1><strong>WebGL</strong> head made <em>of</em> particles</h1>
@melanyss
melanyss / ascii-art-folder-structure-diagram-in-semantic-markup-css.markdown
Created June 7, 2020 15:08
ASCII-art folder structure diagram in semantic markup + CSS