Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 27, 2021 12:01 pm

Create a Sticky Note Effect in 5 Easy Steps with CSS3 and HTML5


In this tutorial, you'll learn how to transform an HTML list into a wall of "sticky notes" that look and work like the following:



The effect is built up gradually and works on all the up-to-date browsers like Chrome, Safari, Firefox and Opera. Older browsers simply get some yellow squares.


Step 1: The HTML and Basic Squares


We will be using some common CSS properties that work across all browsers. As we are using HTML5 for the effect, the basic HTML of our sticky notes is an unordered list with a link containing all the other elements in each list item:



Notice that each note is surrounded by a link. This is a a good element to use for interactive items, as it automatically means that our notes become keyboard accessible. If we used the list item for the effect we'd need to set a tabindex property to get the same access.


The CSS to turn this into the yellow squares is simple:



We reset things the browser normally gives us like margins and paddings and the list style to get rid of the bullets of the list.


We want the list items to be side by side. We would have used the float property to achieve this a while back. However, we can now use the much more powerful flexbox layout module now. This makes it very easy for us to place elements in a two-dimensional layout.


All we have to do is set the display property to flex on the ul element. This will place all our list items in a single row. The list elements will start to overflow at some point. The best way to avoid that is to use the flex-wrap property and set its value to wrap. Extra elements will now keep moving to next row instead of overflowing.


We style the link as a yellow rectangle and float all of the list items to the left. The result is a series of yellow boxes for our list:


Sticky Notes: Basic Yellow Boxes

Flexbox is supported in all major browsers today. This covers around 98.5% users at the time of writing this tutorial. If you need to support older browsers, you can consider using float to lay out the elements.


Step 2: Drop Shadows and Scribbly Font


Now it is time to add a drop shadow to the notes to make them stand out and to use a scribbly, hand-written font as the note font. For this we use Google Fonts and the fonts they provide us with, called "Reenie Beanie" and "Lato".


Google Fonts

Using this, we get a simple line of HTML to include this new font into the page. This is supported by all modern browsers.



We then can set some padding to the headings in the sticky notes, and set the font of the paragraphs to the new font we included. Notice that Reenie Beanie needs to be big to be readable:



In order to give the sticky notes a shadow to make them stand out from the page, we need to apply a box-shadow. Most browsers in use today support this property without use of prefixes.



The box-shadow property sets the offset, spread and color of the shadow. In this case a dark grey with an opacity of 70%. Together with the new font our sticky notes now look like this:


Sticky Notes: Box Shadow

Step 3: Tilting the Notes


Both the tilting of the notes and the zooming we'll add in the next step were already explained in the past, in this article by Zurb. So big thanks to them for publishing this trick.


In order to tilt an element you use the transform:rotate property of CSS3, again adding the prefix for each of the browsers:



This tilts all the links by six degrees to the left. Now to make the sticky notes appear to be randomly tilted, we can use the nth-child property of CSS3:



This tilts every second link four degrees to the right, and offsets it a bit by five pixels from the top. Every third link gets tilted by three degrees to the left and pushed up five pixels. And every fifth link gets rotated five degrees to the right and offset ten pixels from the bottom. All in all this gives the impression of random sticky notes:


Sticky Notes: Random Rotations

Step 4: Zooming the Sticky Notes on Hover and Focus


To make a sticky note stand out we use a larger drop shadow and the scale transformation of CSS3.



We also add a higher z-index to ensure that the enlarged sticky note covers the others. As we apply this on hover and focus, it means that moving the mouse over or tabbing to a link now makes it stand out:


Zooming the Sticky Notes

Step 5: Adding Smooth Transitions and Colors


The last step is to make the change from tilted to zoomed smooth and appealing rather than sudden. For this we use the CSS3 transition module in its different browser vendor implementations:



In essence this says: if something is to change to this element, do not just switch to that other definition but do it gradually during a quarter of a second. As another extra, let's add some color into the mix by making every second sticky note green and every third light blue:



Your sticky notes should now look like this image:


Stixky Demo: Random Colors

Step 6: Making the Sticky Notes Editable


The easiest way to make the sticky notes editable is to use the contenteditable attribute on all the links. This will allow users to click inside the title or the content of the sticky notes and change it.


However, the changes won't stick if the user reloads the page. We can change that by using some JavaScript. Load the latest version of jQuery on the webpage and add the following JavaScript after that.


We will be using localStorage to store the data about our sticky notes. The key will be based on the index of our list item and its value will be the title and content of the sticky note.



The above code attaches a keyup event to all the sticky notes. Whenever, a user types something inside the title or content of a sticky note, we get its content using the text() method. This data is stored in the localStorage of the browser by using the index of the sticky note as a key.


Storing the updated list in localStorage serves no purpose if we can't retrieve it and show it to users. The following code will loop through all the list items and check for their corresponding keys in localStorage. If the key exists, we extract our title and content from it and update the HTML of our list item.



With this code in place, you should now try to edit any of the sticky items and reload the pages to see if the changes stick. Here is a screenshot of my sticky notes.


Sticky Notes: Saved Data

Here is the complete JavaScript code that you need to use in one place. Please make sure that you have also are also loading jQuery on the page.



Summary


There you have it—smoothly animating and tilted sticky notes. Alll supported by Firefox, Opera, Safari and Chrome and falling back to a set of yellow boxes in older browsers. By clever use of the nth-child selector and CSS transformations and transitions, we saved ourselves some scripting. Further, Google's Web Font API made it easy to use a custom font. Using both hover and focus for the effect also means that keyboard users can observe the results as well.


We were also able to add some useful functionality to the sticky notes with use of some JavaScript.


While you're here, check out some of our other CSS tutorials here on Envato Tuts+.




This post has been updated with contributions from Monty Shokeen. Monty is a full-stack developer who also loves to write tutorials, and to learn about new JavaScript libraries.



Original Link: https://code.tutsplus.com/tutorials/create-a-sticky-note-effect-in-5-easy-steps-with-css3-and-html5--net-13934

Share this article:    Share on Facebook
View Full Article

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code