Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use JavaScript and jQuery to realize waterfall flow

2025-01-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the knowledge of "how to use JavaScript and jQuery to achieve waterfall flow". Many people will encounter this dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Using JavaScript to realize

Basic structure:

.........

Basic style:

* {margin: 0px; padding: 0px;} # main {position: relative;} .box {padding: 15px 0.015px; float: left;} .pic {padding: 10px; border: 1px solid # ccc; border-radius: 5px; box-shadow: 0 5px # ccc;}

Train of thought:

1. Get all .boxes under # main

2. Calculate the number of columns of pictures on the page, and set the width of the page.

3. Find the column with the lowest height among these columns

4. Starting from the second line, set the picture to relative positioning and place a picture below the height minimum column.

5. Update the height of the column and repeat steps 3, 4, 5 until the picture is loaded.

6. Determine whether to continue loading the picture (lazy loading) according to the location of the last picture.

Achieve:

1. Get all .boxes under # main

/ / extract all elements whose class is box under main var oParent = document.getElementById (parent); var oBox = getByClass (oParent,box); / / get the element function getByClass (parent,clsname) {var arr = [] according to class; / / store all the acquired elements var oElement = parent.getElementsByTagName ('*') whose class is box; for (var item0

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report