Home > Web Front-end > JS Tutorial > body text

Layer front-end component in layui implements image display function

小云云
Release: 2018-05-14 14:02:32
Original
3133 people have browsed it

This article mainly introduces the method of realizing the image display function of the layer front-end component in layui, and analyzes the operation method and related precautions of the layer component in layui to call the image display function in the form of examples, and provides layer and layui source code downloads, which are required Friends can refer to it, I hope it can help everyone.

The example in this article describes how the layer front-end component implements the image display function. Share it with everyone for your reference, the details are as follows:

Implement the image display function: layer

1. Here we introduce a layer front-end component

layer is a highly praised The best web elastic layer component, she has a comprehensive solution,
is committed to serving developers of all levels, your page will easily have a rich and friendly operating experience.

A few points to note here: Before using the layer front-end component, we need to introduce the layer’s js file

<script type="text/javascript" src=".../.../layer/layer/layer.js"></script>
<script type="text/javascript" src=".../...//layer/layer/extend/layer.ext.js"></script>
Copy after login

Note: The layer.js file should be introduced after jquery, because layer.js is based on jquery.js!

2.json

Json is also required to implement the image display function:

The specific usage is as follows:

{ //您服务端接口需严格按照下述格式返回
    "status": 1,  //请求的状态,1表示成功,其它表示失败
    "msg": "", //状态提示语
    "title": "",  //相册标题
    "id": number型,  //相册id
    "start": 0, //初始显示的图片序号,默认0
    "data": [  //相册包含的图片,数组格式
      {
        "name": "", //图片名
        "pid": number型, //图片id
        "src": "", //原图地址
        "thumb": "", //缩略图地址
        "area": [638, 851] //原图宽高
      }
    ]
}
Copy after login

Use such as:

StringBuilder str = new StringBuilder();
Copy after login
## The append method of # follows the link above and must be accurate

The final return is such as:

return str.toString();
Copy after login
Related recommendations:


Operation from DOM Look at the front-end componentization of Vue&React,

Layui table component initialization loading data and other examples are explained

jQuery encapsulated paging component is explained

The above is the detailed content of Layer front-end component in layui implements image display function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!