Archive of: 100daysofcode
-
Styling a newsletter signup
March 27 2021
I have a grand vision for a newsletter signup that subtley or audaciously animates as the user fills out their email form and then clicks on the sign up button that becomes enabled once their email is validated. Today's test build is a decent starting point. -
Swiping Cards
March 26 2021
I didn't quite get to the point I wanted to with today's post. I'll have to tackle this another day, but I like the concept of swiping through a stack of cards. Though it may have few uses, I think it might be a fun way to display information on certain types of webpages, or it may even be useful in a game. -
No Frills Card
March 25 2021
Kept it simple with today's post after spending a few hours working throught my current track on Treehouse. I don't work much with cards, so I thought I'd get some practice in. -
Working more with loading JSON
March 24 2021
I wanted to try building another layout for the data that I loaded in my Final Fetch post I did on the seventh day of this challenge. I learned how to reverse order list elements and tried out flex box's reversing as well. -
CSS Only Tooltip
March 23 2021
Tooltips can be pretty handy and I've never given making my own a try. I tend to stick with the title attribute on elements and have never tried to build my own tooltips. I still need to tweak and improve the fade-out animation. -
100 Days of Code - Week 6
March 22 2021
This week I tried recreating some neat link styles I saw on the Field Notes website, tried out Josh Comeau’s full-bleed grid tutorial, did a quick refresher on variable fonts, and tried out a few other things with CSS, SVG, and JavaScript.
-
Improving my Background Color Changer
March 22 2021
I added some simple checks to the input fields on yesterday's Simple Background Color Changer and made some tweaks that I hope help on a mobile screen size. I should make it shift focus back to the element that changes once the functions have completed. -
Simple Background Color Changer
March 21 2021
After trying to figure out if it was possible to extract and display an image's metadata in the browser with only JavaScript, I discovered it wasn't as easy as I hoped. So I built this instead. It's nothing special, just extra practice extracted values from inputs and concatenating them into something usable. I didn't do any checks on the values entered, but it won't work properly unless hex color values are used. -
Text on a path in SVG
March 20 2021
I wanted to do a quick refresher on how to add text that displays along a path in an SVG. While working on this, I came across something I had not encountered before. When placing a link within the text, in order to alter it's color you have to modify its fill attribute, not its color. -
CSS Triangles and the Details Element
March 19 2021
I cannot remember if I've ever made triangles or arrows with CSS before, so I thought I'd give that a shot today. I saw them mentioned in an article on CSS Tricks that talked about animating the arrow in the summary element. I took a shot at that as well.