Posted in
105
2:27 am, January 22, 2021
box shadow example(s) - drop shadow
I realised just now, that i dont have a box shadow example! How does that happen, its one of those css elements that i just use so much that i guess i forgot about it.
Related Pages:
https://kruxor.com/view/code/Zj3OV/transitions-and-the-easy-way-to-apply-them/
https://kruxor.com/view/code/kMRLz/using-transform-scale-in-css-to-zoom-on-hover-over/
box shadow example(s) - drop shadow Demo
View Demo Full Screen View Demo New Tab
box shadow example(s) - drop shadow Code
HTML
<h3>A pretty boring (basic) box shadow</h3>
<div class='demo-box box-shadow-1'></div>
<h3>This one is a bit more exciting</h3>
<p>playing a bit more with the blur and the distance and opacity of the shadow it make it look more shadowy (is that a word?) if not ill make it one now. </p>
<div class='demo-box box-shadow-2'></div>
<h3>Lets make it 3D!</h3>
<p>Ok this one is much cooler (can a shadow be cool, i think yes...), as it is interacted with (mouse over) you can see it appears to pop out a bit by increasing the blur shadow distance and opacity. Boom! :P</p>
<div class='demo-box box-shadow-3'></div>
<h3>Add some transitions and zoom and its crazy!</h3>
<p>Ok calm down, its just a shadow and a box but now its animated and transitioned... yes i know im just talking to my self... shh! :P</p>
<div class='demo-box box-shadow-4'></div>
CSS
.demo-box {
margin:10px;
height:100px;
width:100px;
border-radius:3px;
}
/* A pretty boring (basic) box shadow */
.box-shadow-1 {
box-shadow: 0px 1px 2px #000;
}
/* This one is a bit more exciting */
.box-shadow-2 {
box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
}
.box-shadow-3 {
box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
}
.box-shadow-3:hover {
box-shadow: 0px 10px 20px rgba(0,0,0,0.8);
}
.box-shadow-4 {
box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
transition: all 0.3s;
}
.box-shadow-4:hover {
box-shadow: 0px 10px 20px rgba(0,0,0,0.8);
transition: all 0.3s;
transform: scale(1.1);
}
Add Comment
Other Items in css
using css counter-increment to add numbering to elements
hidden scroll anchor for custom scroll position
ken burns slow image zoom
using a radial gradient for background overlay
change selected color on input elements css
animated duck on footer
using filter grayscale to make an image dark
bootstrap dark mode
twitter icon font awesome
how to bundle css files together using windows or mac
button with separated chevron
vertically align text within a fixed height div using flex
how to view a web page in its printer format
white space break word css
roboto and poppins fonts include quick code
CSS Drawing - Beach Scene
404 Error Page Codepen
right align something in its element
hide the third row in a table with css
how to make a transparent logo white with css
target last item css with :last-of-type
target first item css with :first-of-type
responsive menu research full screen multi level
make your images look non squished when not using image backgrounds v2
target 1st td in a table with css
backdrop-filter: blur(10px);
add chevrons to a ul list
foundation responsive tables
allow a title to be in the foreground while still having a before overlay for the background
css responsive max and min targets @media
pre-line white space settings
pre-wrap preserve line spacing but also wrap where needed
css double page document preview with shadow
adding a background image to the titles of the dark mode card on this page
blur the background image while keeping the foreground normal
background image greyscale filter while foreground is still in colour
zoom background of element when active
rounded click me button with icon
logo tickers marquee slow scrolling
add a moving chevron to your href link
inline form field padding
using text-stroke to add a border to your text
adding background blur to an image using css fill screen
using the nth-of-type selector to target a class with the same name
github logo background png css
animated rings expanding with delay ripple water effects
css slow zoom in animation
using the last-of-type css selector to remove a border from the last item in a list
box hover over effects using pulsate animation
using multiple text shadow
Related Search Terms
Other Categories in Code
php functions
php functions
php functions