《How to make various lists on H5 mobile terminal Production method (1)》
《How to produce various lists on H5 mobile terminal (2)》
《How to produce various lists on H5 mobile terminal (3)》
If you saw this article first, it is recommended that you go to the link above and read the corresponding content first, so that the context is coherent and it is easier to understand the content of this article.
The first three chapters all talk about how to implement an ordinary list. The difficulty ranges from easy to difficult, but in general, you can master it at a glance. In this chapter, we will make a graphic list.
Two-column picture and text list is very common. It is even more common in e-commerce mobile H5 terminals such as JD\TB. Here, we Let’s do the simplest one first. As shown in the figure below.
Here is a very simple two-column layout of pictures and texts. Each block contains pictures, names and Price. It is too simple to implement such a layout on the PC side. But since we are on the mobile side, the widths of different mobile phones are inconsistent. Therefore, the requirements are adaptive.
Here All pictures are of uniform specifications and are square. In actual projects, there are generally requirements for product pictures. If your product is not square, we will have relevant tutorials below.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <title>list 2</title> <link rel="stylesheet" href="../style/style.css"></head><body><p class="list_2"> <ul> <li> <a href=""> <img src="../image/goods.jpg" alt="商品图片" class="goods_photo"> <h4 class="goods_title">这里是商品标题1</h4> <em class="goods_price">¥4999.00</em> </a> </li> <li> <a href=""> <img src="../image/goods.jpg" alt="商品图片" class="goods_photo"> <h4 class="goods_title">这里是商品标题2</h4> <em class="goods_price">¥4999.00</em> </a> </li> <li> <a href=""> <img src="../image/goods.jpg" alt="商品图片" class="goods_photo"> <h4 class="goods_title">这里是商品标题3</h4> <em class="goods_price">¥4999.00</em> </a> </li> <li> <a href=""> <img src="../image/goods.jpg" alt="商品图片" class="goods_photo"> <h4 class="goods_title">这里是商品标题4</h4> <em class="goods_price">¥4999.00</em> </a> </li> </ul></p></body></html>
The code is relatively long, but it can still be seen clearly at a glance. We have added different classes to different elements. The purpose of this is to make it site-wide, The basic styles using these elements can be unified and CSS code reuse can be achieved.
.list_2 { ul { @extend .cf; // 引用清理浮动代码片,看不懂请看本人scss相关教程 li { width: 50%;float: left;padding: 1rem 0; outline: 1px solid #ddd; // 使用 outline 模拟边框 (outline不占据盒子模型) background: #fff; // 使用白色背景颜色,防止 outline 重叠造成 2px 线条 a { display: block; text-decoration: none; // 去除默认下划线 } .goods_title,.goods_price { padding: 0 1rem; // 加上左右内填充,防止文字和边框粘结 text-align: center; } .goods_photo { width: 60%;margin: .5rem auto;display: block; } } } }// 全站范围内用到的图文基本样式.goods_title,.goods_price { display: block;position: relative; @include ts(); // 引用文字描白边代码片 @include online(1.8rem); // 引用文字超出一行省略号代码片} .goods_title {color:#000;font-size: 1.2rem;} .goods_price {color:#f60;font-size: 1.5rem;font-weight: bold;}
Let me emphasize again that the CSS part of this series of tutorials uses SASS syntax. If you don’t know SASS syntax, it is recommended to spend half an hour to an hour learning SASS.
Here, we will extract some common styles throughout the site. This will facilitate code reuse.
In this chapter, we use a simple two-column layout of graphic and text lists to focus on the following points
On mobile When using the left and right borders, try not to use border
borders. In this example, outline
is used to simulate.
When using outline
to simulate borders, be sure to match the background color to avoid 2px
borders.
text-shadow
a
tag in
html5It is possible to nest block-level elements. However, in
xhtmlor earlier
htmlversions, this is not recommended. Do not be confused here, or feel inappropriate. With Keep pace with the times.
The above is the detailed content of Detailed explanation of how to make various lists on H5 mobile terminal (4). For more information, please follow other related articles on the PHP Chinese website!