How can I create a smooth appearance of a button block when hovering over a product card using CSS?
I’m developing a product catalog and want to implement an effect where, when hovering over a card, a button block smoothly appears, the card itself increases in height, and is positioned above the content flow.
Requirements:
- Smooth appearance of the button block on hover
- Increase in product card height
- Positioning of the card above the content flow
HTML structure of the card:
<div class="card">
<div class="card_inner">
<div class="card_img_wrap">
<a href="#" class="card_img_link">
<img src="/images/src/products/everest_12.jpg" alt="product image" class="card_img">
</a>
</div>
<h3 class="card_title">
<a href="#" class="card_title_link">Печь-камин EVEREST F12</a>
</h3>
<div class="card_price_block">
<div class="card_price_wrap">
<span class="card_price">77990 <span class="card_currency">руб</span></span>
<span class="card_price_old">79990 руб</span>
</div>
</div>
<form class="card_bottom" action="#">
<button type="submit" class="card_btn">В корзину</button>
<div class="card_counter_wrap">
<span class="card_counter__btn" data-direction="minus">-</span>
<input type="number" name="quantity" value="1" size="5" class="card_counter__value">
<span class="card_counter__btn" data-direction="plus">+</span>
</div>
</form>
</div>
</div>
I’m asking for help implementing this effect. I would appreciate any advice and code examples.
CSS allows creating a smooth button block appearance effect when hovering over product cards through a combination of transitions, height changes, and positioning. To achieve this, you need to use the transition property for animation, the :hover pseudo-class for activating the effect, and z-index for positioning above other elements.
Table of Contents
- Basic Implementation Principles
- Method 1: Using transition and hover
- Method 2: CSS Grid with automatic expansion
- Method 3: Smooth appearance using opacity and transform
- Performance Optimization
- Mobile Adaptation Tips
- Complete Code Example
Basic Implementation Principles
To create a smooth button block appearance when hovering over a product card, you need to use several key CSS properties:
transition- for creating smooth transitions between states:hover- for defining the state when hovering the cursortransform- for scaling or changing dimensionsz-index- for positioning the card above other elementsoverflow: hidden- to prevent content from flowing around
As noted in the CSS animations documentation, using transitions allows you to create smooth and professional effects without the need for JavaScript.
Method 1: Using transition and hover
This method uses simple CSS transitions to change the card height and make buttons appear.
.card {
transition: all 0.3s ease;
overflow: hidden;
position: relative;
}
.card:hover {
transform: translateY(-5px);
z-index: 10;
}
.card_inner {
transition: height 0.3s ease;
}
.card:hover .card_inner {
height: auto;
}
.card_btn {
opacity: 0;
transform: translateY(10px);
transition: all 0.3s ease 0.1s;
}
.card:hover .card_btn {
opacity: 1;
transform: translateY(0);
}
As explained in the article about CSS hover effects, transitions with delays (transition-delay) allow for sequential element appearance, which improves user experience.
Method 2: CSS Grid with automatic expansion
A more modern approach using CSS Grid to create dynamic height.
.card {
display: grid;
grid-template-rows: auto 1fr auto;
transition: grid-template-rows 0.3s ease;
overflow: hidden;
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card:hover {
grid-template-rows: auto 1fr auto 1fr;
z-index: 10;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.card_bottom {
grid-row: 3;
max-height: 0;
opacity: 0;
transform: translateY(-10px);
transition: all 0.3s ease;
}
.card:hover .card_bottom {
max-height: 100px;
opacity: 1;
transform: translateY(0);
}
This method, as shown in the CSS animation examples, allows for more precise control over card behavior on hover.
Method 3: Smooth appearance using opacity and transform
An elegant solution focusing on the smoothness of button appearance animations.
.card {
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
z-index: 10;
}
.card_bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
padding: 20px;
transform: translateY(100%);
transition: transform 0.4s ease;
}
.card:hover .card_bottom {
transform: translateY(0);
}
.card_btn {
opacity: 0;
transform: scale(0.9);
transition: all 0.3s ease 0.2s;
}
.card:hover .card_btn {
opacity: 1;
transform: scale(1);
}
This approach uses a gradient to smoothly hide content, creating a more professional look. As noted in the CSS effects guide, these methods work great for product catalogs.
Performance Optimization
For optimal performance when using CSS animations:
/* Use will-change to predict changes */
.card {
will-change: transform, box-shadow;
}
/* Optimize properties for animation */
.card:hover {
transform: translateY(-5px);
/* Avoid animating properties that require reflow */
/* Don't animate width, height, left, top */
}
/* Use GPU acceleration */
.card_bottom {
backface-visibility: hidden;
perspective: 1000px;
}
As recommended in the CSS performance article, avoid animating properties that cause page reflow, such as width, height, margin, padding.
Mobile Adaptation Tips
For proper functionality on mobile devices:
/* Media query for adaptation */
@media (max-width: 768px) {
.card:hover {
transform: none;
z-index: 1;
}
.card_bottom {
position: static;
transform: none;
opacity: 1;
background: none;
}
.card:hover .card_bottom {
transform: none;
}
}
/* For touch devices, you can add a special class */
@media (hover: none) {
.card:hover {
transform: none;
z-index: 1;
}
.card_bottom {
position: static;
opacity: 1;
transform: none;
}
}
Complete Code Example
<div class="card">
<div class="card_inner">
<div class="card_img_wrap">
<a href="#" class="card_img_link">
<img src="/images/src/products/everest_12.jpg" alt="product image" class="card_img">
</a>
</div>
<h3 class="card_title">
<a href="#" class="card_title_link">Stove EVEREST F12</a>
</h3>
<div class="card_price_block">
<div class="card_price_wrap">
<span class="card_price">77990 <span class="card_currency">rub</span></span>
<span class="card_price_old">79990 rub</span>
</div>
</div>
<form class="card_bottom" action="#">
<button type="submit" class="card_btn">Add to Cart</button>
<div class="card_counter_wrap">
<span class="card_counter__btn" data-direction="minus">-</span>
<input type="number" name="quantity" value="1" size="5" class="card_counter__value">
<span class="card_counter__btn" data-direction="plus">+</span>
</div>
</form>
</div>
</div>
/* Basic card styles */
.card {
position: relative;
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
will-change: transform, box-shadow;
overflow: hidden;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
z-index: 10;
}
/* Inner structure */
.card_inner {
position: relative;
padding: 16px;
}
/* Button block */
.card_bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
padding: 20px;
transform: translateY(100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(10px);
}
.card:hover .card_bottom {
transform: translateY(0);
}
/* Button with smooth appearance */
.card_btn {
opacity: 0;
transform: translateY(10px) scale(0.95);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
background: #007bff;
color: white;
border: none;
padding: 8px 16px;
border-radius: 6px;
cursor: pointer;
}
.card:hover .card_btn {
opacity: 1;
transform: translateY(0) scale(1);
}
/* Responsiveness */
@media (max-width: 768px) {
.card:hover {
transform: none;
z-index: 1;
}
.card_bottom {
position: static;
transform: none;
opacity: 1;
background: none;
padding: 16px;
margin-top: 12px;
}
.card:hover .card_bottom {
transform: none;
}
.card_btn {
opacity: 1;
transform: none;
}
}
This approach creates a professional effect with smooth button block appearance, card elevation, and proper positioning above content. Using cubic-bezier functions makes animations more natural, while the gradient ensures smooth content hiding under buttons.
Sources
- Button appearance on hover CSS | Style CSS
- Smooth block extension and button appearance | Stack Overflow
- How to create smooth block appearance CSS | Impuls-Web.ru
- Block appearance on hover using CSS | Gnatkovsky
- CSS Hover Effects: 40 Engaging Animations | Prismic
- 29 CSS Card Hover Effects | FreeFrontend
- Card with expand-on-hover effect | Nested Software
- How to expand panel on hover in CSS | GeeksforGeeks
- CSS Animation: Card Width expand on hover | DEV Community
- CSS Responsive Card Hover Effects | YouTube
Conclusion
Creating a smooth button block appearance when hovering over a product card is an effective way to improve user experience in catalogs. Key implementation points:
- Use CSS transitions to create smooth animations
- Apply
z-indexto position the card above content - Experiment with different animation functions (
cubic-bezier) - Optimize performance by avoiding animations of properties that cause reflow
- Don’t forget about mobile adaptation and touch devices
Choose the method that best suits your design and performance requirements. All proposed solutions work without JavaScript and provide a modern, professional look for your product catalog.