Home php教程 php手册 PHP和Jquery和ajax实现瀑布流

PHP和Jquery和ajax实现瀑布流

Jun 07, 2016 am 11:35 AM

PHP和Jquery和ajax实现下拉淡出瀑布流效果(无需插件)
不废话,直接上代码,您也可以点这里看瀑布流演示http://www.shouce.ren/post/xiaohua。
前台:<?php <br /> $category=$this->getMyVal('category',$_GET);<br> $xiaohuaList=Xiaohua::model()->getXiaohao($category); //打开页面默认显示的数据<br> ?><br> <br> <div> <br>     <?php foreach ($xiaohuaList as $xiaohua):?><br>         <?php $q_id=$xiaohua->id;?><br>         <div> <br>             <div> <span></span><strong>"><?php echo CHtml::encode($xiaohua->title);?></strong> </div> <br>             <div>"><?php echo $xiaohua->content;?></div> <br>             <div><span>);" class="fx cursor_p" data-id="<?php echo $q_id;?>"><span></span>分享</span></div> <br>         </div> <br>     <?php endforeach;?><br> </div> <br> <script><br /> var opt={<br /> getResource:function(index,render){//index为已加载次数,render为渲染接口函数,接受一个dom集合或jquery对象作为参数。通过ajax等异步方法得到的数据可以传入该接口进行渲染,如 render(elem)<br /> var html=&#039;&#039;;<br /> var _url=&#039;<?php echo $this->createUrl(&#039;listXiaohua&#039;);?>&#039;;<br /> $.ajax({<br /> type: "get",<br /> url: _url,<br /> dataType : "json",<br /> async:false,<br /> success: function(data){<br /> for( var i in data){<br /> var q_id=data[i].id;<br /> html+=&#039;<div class="cell m-bg item-h border_h"><div class="border-solid-b padding-b-5 text-center"><span class="g-bg glyphicon glyphicon-sunglasses margin-r-5" aria-hidden="true"><strong class="color-5 fx_t_&#039;+q_id+&#039;">&#039;+data[i].title+&#039;<div class="padding-t-5 fx_c_&#039;+q_id+&#039;">&#039;+data[i].content+&#039;&#039;<br /> +&#039;<div class="padding-t-5 text-right"><span onclick="fx(&#039;+q_id+&#039;);" class="fx cursor_p" data-id="&#039;+q_id+&#039;"><span class="g-bg glyphicon glyphicon-share-alt margin-r-5" aria-hidden="true">分享&#039;;<br /> }<br /> }});<br /> return $(html);<br /> },<br /> column_width:376,<br /> column_space:10,<br /> auto_imgHeight:true,<br /> insert_type:1<br /> }<br /> $(&#039;#waterfall&#039;).waterfall(opt);<br /> </script>后台:public function actionListXiaohua() {<br>         $xiaohuaList=Xiaohua::model()->getXiaohua();//获取笑话信息<br>         echo CJSON::encode($xiaohuaList);<br>     }js:;(function($){<br>    var<br>    //参数<br>    setting={<br>       column_width:240,//列宽<br>       column_className:'waterfall_column',//列的类名<br>       column_space:2,//列间距<br>       cell_selector:'.cell',//要排列的砖块的选择器,context为整个外部容器<br>       img_selector:'img',//要加载的图片的选择器<br>       auto_imgHeight:true,//是否需要自动计算图片的高度<br>       fadein:true,//是否渐显载入<br>       fadein_speed:600,//渐显速率,单位毫秒<br>       insert_type:1, //单元格插入方式,1为插入最短那列,2为按序轮流插入<br>       getResource:function(index){ }  //获取动态资源函数,必须返回一个砖块元素集合,传入参数为加载的次数<br>    },<br>    //<br>    waterfall=$.waterfall={},//对外信息对象<br>    $waterfall=null;//容器<br>    waterfall.load_index=0, //加载次数<br>    $.fn.extend({<br>        waterfall:function(opt){<br>           opt=opt||{};<br>           setting=$.extend(setting,opt);<br>           $waterfall=waterfall.$waterfall=$(this);<br>           waterfall.$columns=creatColumn();<br>           render($(this).find(setting.cell_selector).detach(),false); //重排已存在元素时强制不渐显<br>           waterfall._scrollTimer2=null;<br>           $(window).bind('scroll',function(){<br>              clearTimeout(waterfall._scrollTimer2);<br>              waterfall._scrollTimer2=setTimeout(onScroll,300);<br>           });<br>           waterfall._scrollTimer3=null;<br>           $(window).bind('resize',function(){<br>              clearTimeout(waterfall._scrollTimer3);<br>              waterfall._scrollTimer3=setTimeout(onResize,300);<br>           });<br>        }<br>    });<br>    function creatColumn(){//创建列<br>       waterfall.column_num=calculateColumns();//列数<br>       //循环创建列<br>       var html='';<br>       for(var i=0;i<waterfall.column_num></waterfall.column_num>          html+='<div></div>';<br>       }<br>       $waterfall.prepend(html);//插入列<br>       return $('.'+setting.column_className,$waterfall);//列集合<br>    }<br>    function calculateColumns(){//计算需要的列数<br>       var num=Math.floor(($waterfall.innerWidth())/(setting.column_width+setting.column_space));<br>       if(num       return num;<br>    }<br>    function render(elements,fadein){//渲染元素<br>       if(!$(elements).length) return;//没有元素<br>       var $columns = waterfall.$columns;<br>       $(elements).each(function(i){<br>           if(!setting.auto_imgHeight||setting.insert_type==2){//如果给出了图片高度,或者是按顺序插入,则不必等图片加载完就能计算列的高度了<br>              if(setting.insert_type==1){<br>                 insert($(elements).eq(i),setting.fadein&&fadein);//插入元素<br>              }else if(setting.insert_type==2){<br>                 insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素<br>              }<br>              return true;//continue<br>           }<br>           if($(this)[0].nodeName.toLowerCase()=='img'||$(this).find(setting.img_selector).length>0){//本身是图片或含有图片<br>               var image=new Image;<br>               var src=$(this)[0].nodeName.toLowerCase()=='img'?$(this).attr('src'):$(this).find(setting.img_selector).attr('src');<br>               image.onload=function(){//图片加载后才能自动计算出尺寸<br>                   image.onreadystatechange=null;<br>                   if(setting.insert_type==1){<br>                      insert($(elements).eq(i),setting.fadein&&fadein);//插入元素<br>                   }else if(setting.insert_type==2){<br>                      insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素<br>                   }<br>                   image=null;<br>               }<br>               image.onreadystatechange=function(){//处理IE等浏览器的缓存问题:图片缓存后不会再触发onload事件<br>                   if(image.readyState == "complete"){<br>                      image.onload=null;<br>                      if(setting.insert_type==1){<br>                         insert($(elements).eq(i),setting.fadein&&fadein);//插入元素<br>                      }else if(setting.insert_type==2){<br>                         insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素<br>                      }<br>                      image=null;<br>                   }<br>               }<br>               image.src=src;<br>           }else{//不用考虑图片加载<br>               if(setting.insert_type==1){<br>                  insert($(elements).eq(i),setting.fadein&&fadein);//插入元素<br>               }else if(setting.insert_type==2){<br>                  insert2($(elements).eq(i),i,setting.fadein&&fadein);//插入元素<br>               }<br>           }<br>       });<br>    }<br>    function public_render(elems){//ajax得到元素的渲染接口<br>          render(elems,true);<br>    }<br>    function insert($element,fadein){//把元素插入最短列<br>       if(fadein){//渐显<br>          $element.css('opacity',0).appendTo(waterfall.$columns.eq(calculateLowest())).fadeTo(setting.fadein_speed,1);<br>       }else{//不渐显<br>          $element.appendTo(waterfall.$columns.eq(calculateLowest()));<br>       }<br>    }<br>    function insert2($element,i,fadein){//按序轮流插入元素<br>       if(fadein){//渐显<br>          $element.css('opacity',0).appendTo(waterfall.$columns.eq(i%waterfall.column_num)).fadeTo(setting.fadein_speed,1);<br>       }else{//不渐显<br>          $element.appendTo(waterfall.$columns.eq(i%waterfall.column_num));<br>       }<br>    }<br>    function calculateLowest(){//计算最短的那列的索引<br>       var min=waterfall.$columns.eq(0).outerHeight(),min_key=0;<br>       waterfall.$columns.each(function(i){<br>          if($(this).outerHeight()<min></min>             min=$(this).outerHeight();<br>             min_key=i;<br>          }<br>       });<br>       return min_key;<br>    }<br>    function getElements(){//获取资源<br>       $.waterfall.load_index++;<br>       return setting.getResource($.waterfall.load_index,public_render);<br>    }<br>    waterfall._scrollTimer=null;//延迟滚动加载计时器<br>    function onScroll(){//滚动加载<br>       clearTimeout(waterfall._scrollTimer);<br>       waterfall._scrollTimer=setTimeout(function(){<br>           var $lowest_column=waterfall.$columns.eq(calculateLowest());//最短列<br>           var bottom=$lowest_column.offset().top+$lowest_column.outerHeight();//最短列底部距离浏览器窗口顶部的距离<br>           var scrollTop=document.documentElement.scrollTop||document.body.scrollTop||0;//滚动条距离<br>           var windowHeight=document.documentElement.clientHeight||document.body.clientHeight||0;//窗口高度<br>           if(scrollTop>=bottom-windowHeight){<br>              render(getElements(),true);<br>           }<br>       },100);<br>    }<br>    function onResize(){//窗口缩放时重新排列<br>       if(calculateColumns()==waterfall.column_num) return; //列数未改变,不需要重排<br>       var $cells=waterfall.$waterfall.find(setting.cell_selector);<br>       waterfall.$columns.remove();<br>       waterfall.$columns=creatColumn();<br>       render($cells,false); //重排已有元素时强制不渐显<br>    }<br> })(jQuery);好了,全部完成了。这里看瀑布流演示http://www.shouce.ren/post/xiaohua。

AD:真正免费,域名+虚机+企业邮箱=0元

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Learn about introductory code examples for Python programming Learn about introductory code examples for Python programming Jan 04, 2024 am 10:50 AM

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

Go language programming examples: code examples in web development Go language programming examples: code examples in web development Mar 04, 2024 pm 04:54 PM

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

Java implements simple bubble sort code Java implements simple bubble sort code Jan 30, 2024 am 09:34 AM

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

PHP variables in action: 10 real-life examples of use PHP variables in action: 10 real-life examples of use Feb 19, 2024 pm 03:00 PM

PHP variables store values ​​during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

From beginner to proficient: Code implementation of commonly used data structures in Go language From beginner to proficient: Code implementation of commonly used data structures in Go language Mar 04, 2024 pm 03:09 PM

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Huawei Cloud Edge Computing Interconnection Guide: Java code examples to quickly implement interfaces Jul 05, 2023 pm 09:57 PM

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (

How to use PHP to write inventory management function code in the inventory management system How to use PHP to write inventory management function code in the inventory management system Aug 06, 2023 pm 04:49 PM

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Guidance and Examples: Learn to implement the selection sort algorithm in Java Guidance and Examples: Learn to implement the selection sort algorithm in Java Feb 18, 2024 am 10:52 AM

Java Selection Sorting Method Code Writing Guide and Examples Selection sorting is a simple and intuitive sorting algorithm. The idea is to select the smallest (or largest) element from the unsorted elements each time and exchange it until all elements are sorted. This article will provide a code writing guide for selection sorting, and attach specific Java sample code. Algorithm Principle The basic principle of selection sort is to divide the array to be sorted into two parts, sorted and unsorted. Each time, the smallest (or largest) element is selected from the unsorted part and placed at the end of the sorted part. Repeat the above

See all articles