The jquery code implements a simple random image waterfall flow effect

  • 2020-06-01 08:09:36
  • OfStack

I used jQuery to make it easy for everyone to understand. Of course, it is more efficient to use the source-generated js code, but many people are not familiar with multi-source js

Code:


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jquery Random image waterfall flow loads indefinitely </title>
<style type="text/css">
*{margin:0;padding:0;list-style-type:none;}
a,img{border:0;}
body{font:12px/180% Arial, Helvetica, sans-serif, " The new song typeface ";}
/* container */
#container{width:940px;margin:50px auto;}
#container ul{width:300px;list-style:none;float:left;margin-right:20px;}
#container ul li{margin-bottom:20px;}
#container ul li img{width:300px;}
</style>
</head>
<body>
<div id="container">
<ul class="col">
<li><img src="201405/-1.jpg" alt=""/></li>
<li><img src="201405/-2.jpg" alt=""/></li>
<li><img src="201405/-3.jpg" alt=""/></li>
</ul>
<ul class="col"></ul>
<ul class="col" style="margin-right:0"></ul>
</div>
<script type="text/javascript" src="/ajaxjs/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(function(){
function loadMeinv(){
var data = 0;
for(var i=0;i<9;i++){// Simulate loading images randomly each time you load them 
data = parseInt(Math.random()*9);
var html = "";
html = '<li><img src = /-'
+data+'.jpg><p>src='
+data+'.jpg</p></li>';
$minUl = getMinUl();
$minUl.append(html);
}
}
loadMeinv();
$(window).on("scroll",function(){
$minUl = getMinUl();
if($minUl.height() <= $(window).scrollTop()+$(window).height()){
// When one of the shortest ul Is higher than the window rolls out + Load a new image when the browser is high in height 
loadMeinv();
}
})
function getMinUl(){// Get the shortest at a time ul, Put the image after it 
var $arrUl = $("#container .col");
var $minUl =$arrUl.eq(0);
$arrUl.each(function(index,elem){
if($(elem).height()<$minUl.height()){
$minUl = $(elem);
}
});
return $minUl;
}
})
</script>
<div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
</div>
<div>https://www.ofstack.com/</div>
</body>
</html>

That's all for this article, I hope you enjoy it.


Related articles: