CSS3 realizes the website product display effect diagram

CSS3 realizes the website product display effect diagram

This article introduces the effect of website product display using CSS3 and shares it with you. The details are as follows:

HTML code

<div class="product">
  <ul>
   <li>
    <div class="pro-img">
     <a href="#">
      <img src="images/pms_1524883847.49276938!220x220.jpg" alt="">
     </a>
    </div>
    <h3><a href="#">Xiaomi TV 4A 43-inch Youth Edition</a></h3>
    <p class="desc">Full HD screen/ artificial intelligence voice</p>
    <p class="price">
     <span>1499</span> yuan<del>1699</del>
    </p>
    <div class="review">
     <a href="#">
      <span class="msg">As good as ever, Xiaomi sentiment</span>
      <span class="auther">Comments from surprise</span>
     </a>
    </div>
   </li>
  </ul>
 </div>

CSS3 Code

* {
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

input, button {
	outline: none;
	border: none;
}

a {
	text-decoration: none;
}

.clearfix::before,
.clearfix::after {
	content: "";
	height: 0;
	line-height: 0;
	display: block;
	visibility: hidden;
}

.clearfix::after {
	clear: both;
}

body {
	padding: 100px;
	background-color: #f5f5f5;
}

.product li {
    float: left;
    width: 234px;
	height: 246px;
    padding: 34px 0 20px;
    z-index: 1;
    margin-left: 14px;
    margin-bottom: 14px;
    background: #fff;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
	position: relative;
}

.pro-img {
	width: 150px;
	height: 150px;
	margin: 0 auto 18px;
}

.pro-img a {
	width: 100%;
	height: 100%;
}

.pro-img img {
	display: block;
	width: 100%;
	height: 100%;
}

.product li h3 {
	margin: 0 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.product li h3 a {
	color: #333;
}

.desc {
	margin: 0 10px 10px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #b0b0b0;
}

.price {
	font-size: 14px;
	margin: 0 10px 10px;
    text-align: center;
    color: #ff6700;
}

.price del {
	color: #b0b0b0;
}

.review {
	position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 234px;
    height: 0;
    overflow: hidden;
    font-size: 12px;
    background: #ff6700;
    opacity: 0;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

.review a {
	color: #757575;
	display: block;
    padding: 8px 30px;
    outline: 0;
}

.review a span {
	display: block;
	margin-bottom: 5px;
    color: #fff;
}

.product li:hover {
	-webkit-box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}

.product li:hover .review {
	opacity: 1;
	height: 76px;
}

Running effect diagram:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Some notes on installing fastdfs image in docker

>>:  Detailed description of common events and methods of html text

Recommend

Use of Linux xargs command

1. Function: xargs can convert the data separated...

How to use resident nodes for layer management in CocosCreator

CocosCreator version: 2.3.4 Most games have layer...

Docker deploys net5 program to achieve cross-platform functions

Deployment environment: docker container, liunx s...

Disadvantages and reasonable use of MySQL database index

Table of contents Proper use of indexes 1. Disadv...

Linux uses bond to implement dual network cards to bind a single IP sample code

In order to provide high availability of the netw...

How to batch generate MySQL non-duplicate mobile phone number table example code

Preface In many MySQL test scenarios, some test d...

Introduction to Vue3 Composition API

Table of contents Overview Example Why is it need...

Complete step record of Vue encapsulation of general table components

Table of contents Preface Why do we need to encap...

Detailed explanation of Strict mode in JavaScript

Table of contents Introduction Using Strict mode ...

Example code for implementing 3D text hover effect using CSS3

This article introduces the sample code of CSS3 t...

How to add a pop-up bottom action button for element-ui's Select and Cascader

As shown in the figure below, it is a common desi...

jQuery realizes dynamic particle effect

This article shares the specific code of jQuery t...

Solve the problem of secure_file_priv null

Add secure_file_priv = ' '; then run cmd ...

MySQL database import and export data error solution example explanation

Exporting Data Report an error SHOW VARIABLES LIK...