Skip to content
View Readf0x's full-sized avatar
™️
Trademark™
™️
Trademark™
Block or Report

Block or report Readf0x

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Readf0x/README.md

Aspiring software engineer with significant web dev experience

Check out this sweet animation

Or render it yourself in svelte
<script>
  var showcaseElems = Array.from({length: 9}, (_, i) => (i + 1) * 100)
  var sweet = [
    "s",
    "w",
    "e",
    "e",
    "t",
  ]
  var sweetI = Array.from({length: sweet.length}, (_, i) => i + 1)

  setInterval(() => {
    showcaseElems.push(900 - showcaseElems.shift())
    showcaseElems = showcaseElems
    sweetI.push(sweetI.length - sweetI.shift())
    sweetI = sweetI
  }, 100)
</script>

<svelte:head>
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com">
  <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap" rel="stylesheet">
</svelte:head>

<h1>
  Look at this
  {#each sweet as l, i}
    <i style:font-variation-settings="'wdth' {((37.5 / 4) * (sweetI[i])) + 62.5}, 'wght' {((800 / 4) * (sweetI[i])) + 100}">{l[0]}</i>
  {/each}
  animation
</h1>

<div class="variable-showcase">
  {#each showcaseElems as i}
  <p class="variable-showcase-item" style:font-weight={i}>Animation</p>
  {/each}
</div>

<style>
  * {
    font-family: "Noto Sans";
    transition: 0.5s;
  }
  .variable-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
  }
  .variable-showcase-item {
    margin: 0;
  }
</style>

Popular repositories

  1. TSA-webmaster TSA-webmaster Public archive

    project for TSA webmaster category 2023

    Svelte 1

  2. readf0x readf0x Public

  3. readf0x.github.io readf0x.github.io Public

    My personal site

    JavaScript

  4. readf0x-test-mod readf0x-test-mod Public archive

    Forked from FabricMC/fabric-example-mod

    Example Fabric mod

    Java

  5. keyboard-layout-editor keyboard-layout-editor Public archive

    Forked from ijprest/keyboard-layout-editor

    Modified version of ijprest's kld

    JavaScript

  6. readf0x.planetbob.net readf0x.planetbob.net Public archive

    My personal website

    Vue