Skip to content

Instantly share code, notes, and snippets.

@itumeles1
itumeles1 / blend-mode-sticky-nav-hero.markdown
Created July 4, 2023 06:13
Blend-Mode Sticky Nav & Hero
@itumeles1
itumeles1 / anime-js-scrollmagic-scroll-based-animations.markdown
Created July 16, 2021 00:33
Anime.js + ScrollMagic Scroll Based Animations

Anime.js + ScrollMagic Scroll Based Animations

A example of using ScrollMagic to trigger Anime.js animations. Some of the animations are set to play when triggered and some are set to progress as the user scrolls the page.

A Pen by itumeles1 on CodePen.

License.

@dabit3
dabit3 / basicmarket.sol
Last active January 9, 2024 08:54
Basic NFT marketplace
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract NFT is ERC721URIStorage {
using Counters for Counters.Counter;