Skip to content
View bootsified's full-sized avatar
🤓
🤓
Block or Report

Block or report bootsified

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

Pinned Loading

  1. bootsified-2023 bootsified-2023 Public

    This is the repo for the personal portfolio website of John "Boots" Highland.

    TypeScript

  2. Google Map with multiple markers - G... Google Map with multiple markers - Geocoded addresses, unique InfoWindows, and automatic zoom and centering to show all markers. Working demo here: https://codepen.io/bootsified/details/XWbgwNr
    1
    <!--
    2
    * GOOGLE MAP W/ MULTIPLE MARKERS AND OPTIONAL GEOCODING
    3
    * by Boots (www.boots.media)
    4
    * Working demo here: https://codepen.io/bootsified/details/XWbgwNr
    5
    * 
  3. Text link to Google Maps "Get Direct... Text link to Google Maps "Get Directions" page, with focus initially set for empty starting address field.
    1
    <a href="https://www.google.com/maps/dir//1234+Migh+Street,Mightown,+CA+77777/" target="_blank">Get Directions</a>
  4. Handy CSS properties for easing func... Handy CSS properties for easing functions
    1
    :root {
    2
      --ease-in-quad:       cubic-bezier(0.55, 0.085, 0.68, 0.53);
    3
      --ease-in-cubic:      cubic-bezier(0.55, 0.055, 0.675, 0.19);
    4
      --ease-in-quart:      cubic-bezier(0.895, 0.03, 0.685, 0.22);
    5
      --ease-in-quint:      cubic-bezier(0.755, 0.05, 0.855, 0.06);