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

highslide.js plug-in project practice (with code)

php中世界最好的语言
Release: 2018-06-06 15:35:04
Original
2016 people have browsed it

This time I will bring you the actual combat of the highslide.js plug-in project (with code). What are the precautions for the actual implementation of the highslide.js plug-in project? The following is a practical case, let's take a look.

Preface

Today I used a picture display plug-in, highslide.js. It feels very comfortable to use and there is almost no need to write code. , you just need to know how to write parameters.

So how should we use such an awesome plug-in? I will explain it to you below.

1. Introduction

First we use the absolute path to introduce. This is usually a method cited in actual projects. When we download There is a file package that contains style files and script files.

My project is a jsp file, so the way to introduce the root directory is different. Friends can specify how to introduce it according to their own projects.

Then what we have to do is call our plug-in and pass in the parameters:

       

##2. Configuration parameters

The above is my parameter configuration diagram

<link rel="stylesheet" type="text/css" href="<%=controller.getStaticPath(request)%>/js/highslide.css" rel="external nofollow" />
<script type="text/javascript" src="<%=controller.getStaticPath(request)%>/js/highslide-with-gallery.js"></script>
Copy after login
The above code does not need to be changed except that the file address needs to be configured according to its own path.

3. How to display

Once the plug-in is equipped, how can we display our pictures? This is simpler.

The directions indicated by the arrows in the above picture must be configured. 1. If the class name of the outermost layer p is highslide-gallery, then the image display we complete will display all the pictures in this layer of p in a carousel.

#2. The outer layer of the picture should be wrapped with an A tag, and the address of the A tag should be the address of the real big picture, that is, the address of the picture to be displayed. Then give A price click event

onclick="return hs.expand(this)

, if not added, the click will have no effect.

Remember The way to write the click event is

return hs.expand(this)

. In fact, this can complete the interactive effect of clicking on a small picture to display the playback of the large picture. Of course, you can also change the picture into text or other words, so that It can complete the click display function. Let me show you the final effect below.

4. Display effect

     

This is before clicking      

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Configuring mint-ui for Vue2.0 from scratch (with code)

vue calculated properties and listening Detailed explanation of actual combat projects

The above is the detailed content of highslide.js plug-in project practice (with code). 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!