A Pen by Vashon Gonzales on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="light outer" data-theme="light"> | |
<section class="inner"> | |
<div class="relative"> | |
<template id="v-terminal-content"> | |
<!-- start user code --> | |
<pre slot="tabpanel" id="panel-4-1" aria-labelledby="tab-4-1" tabindex="0" class="code-outer line-numbers-bg"><code class="code"><span class="line"><span style="color: #db889a;">is</span><span style="color: #ECEFF4">.</span><span style="color: #88C0D0">string</span><span style="color: #D8DEE9FF">(</span><span style="color: #A3BE8C">value</span><span style="color: #ECEFF499">: unknown</span><span style="color: #D8DEE9FF">)</span> <span style="color: #81A1C1">=></span> <span style="color: #A3BE8C">value</span> <span style="color: #ECEFF499">is</span> <span style="color: #d4976c">string</span><span style="color:#ECEFF499">;</span></span><span class="line"><span style="color: #db889a;">is</span><span style="color: #ECEFF4">.</span><span style="color: #d4976c;">assert</span><span style="color: #ECEFF4">.</span><span |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html data-wf-page="6460a7c33cd46f90282a5dd3" data-wf-site="6460a7c33cd46f90282a5d8b"> | |
<head> | |
<meta charset="utf-8"> | |
<title>form</title> | |
<meta content="width=device-width, initial-scale=1" name="viewport"> | |
<meta content="Webflow" name="generator"> | |
<link href="css/normalize.css" rel="stylesheet" type="text/css"> | |
<link href="css/webflow.css" rel="stylesheet" type="text/css"> | |
<link href="css/form-3b7b0b.webflow.css" rel="stylesheet" type="text/css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="cursor"> | |
<div id="circle"></div> | |
</div> | |
<br> | |
</br> | |
<div id="infographic" class="d-flex flex-column align-items-center py-5"> | |
<div class="step one text-primary"> | |
<div class="circle"> | |
<i class="fas fa-meteor"></i> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity >= 0.4.22 <0.9.0; | |
library console { | |
address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67); | |
function _sendLogPayload(bytes memory payload) private view { | |
uint256 payloadLength = payload.length; | |
address consoleAddress = CONSOLE_ADDRESS; | |
assembly { |
A Pen by Vashon Gonzales on CodePen.
The largest open-source fintech repository
A Pen by Vashon Gonzales on CodePen.
A Pen by Vashon Gonzales on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Parallax Scrolling Effect with CSS & Vanilla Javascript</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> |
Tweaking clip-path to create a hollow triangle shape and adding to it a pseudo element with an animated conic-gradient to create a rotating "shine" effect.
A Pen by Paulo Nunes on CodePen.