欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php/mysql/jquery实现各系统流行的瀑布流显示方式,实现很简单的

程序员文章站 2022-03-15 22:25:29
...

大家在用这个东西的时候一定要计得有这么几个文件,一个是jquery.js 还有就是你自己数据库的密码。和相对应的图片才可以正常看到效果。下面就是这里所有的代码!!!HTML文件:waterfall.html !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN

大家在用这个东西的时候一定要计得有这么几个文件,一个是jquery.js 还有就是你自己数据库的密码。和相对应的图片才可以正常看到效果。下面就是这里所有的代码!!! HTML文件:waterfall.html


 
 
 瀑布流-Derek
  
     
  /* * Javascript文件:waterfall.js */ $(function(){ jsonajax(); });   //这里就要进行计算滚动条当前所在的位置了。如果滚动条离最底部还有100px的时候就要进行调用ajax加载数据 $(window).scroll(function(){ //此方法是在滚动条滚动时发生的函数 // 当滚动到最底部以上100像素时,加载新内容 var $doc_height,$s_top,$now_height; $doc_height = $(document).height(); //这里是document的整个高度 $s_top = $(this).scrollTop(); //当前滚动条离最顶上多少高度 $now_height = $(this).height(); //这里的this 也是就是window对象 if(($doc_height - $s_top - $now_height) temp_h){ iheight = temp_h; $row = $(this); //此时$row是li对象了 } }); $item = $('
php/mysql/jquery实现各系统流行的瀑布流显示方式,实现很简单的
'+neirou.title+'
').hide(); $row.append($item); $item.fadeIn(); } } } }); }   /* * CSS文件:waterfall.css */   body{text-align:center;} /*Download by http://www.codefans.net*/ #stage{ margin:0 auto; padding:0; width:880px; } #stage li{ margin:0; padding:0; list-style:none;float:left; width:220px;} #stage li div{ font-size:12px; padding:10px; color:#999999; text-align:left; }     /* * php文件:data.php */ $v){ $json_arr[] = (object)$v; } //print_r($json_arr); echo json_encode( $json_arr );