本篇内容主要讲解“怎么使用jQuery代码实现瀑布流页面”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么使用jQuery代码实现瀑布流页面”吧!
views.py
from django.shortcuts import render,HttpResponse from app01 import models import json # Create your views here. def index(req): if req.method == 'POST': dic = models.Upload.objects.filter(status=1).values('img1','name','info') dic = list(dic) dic = json.dumps(dic) print(dic) return HttpResponse(dic) return render(req, 'index.html')
url.py
from django.conf.urls import url from django.contrib import admin from app01 import views urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^index/', views.index), ]
index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .clearfix:after{ content: '.'; visibility: hidden; height: 0; clear: both; display: block; } img{ width: 245px; height: 200px; } </style> </head> <body> <div id="container" class="clearfix"> <div > </div> <div > </div> <div > </div> <div > </div> </div> <script src="/static/js/jquery-2.1.4.min.js"></script> <script> $(function () { $.ajax({ url:'/index/', type:'POST', dataType:'json', success:function (arg) { $.each(arg, function (k, v) { console.log(k,v); k = k + 1; var div = document.createElement('div'); div.className = 'c1'; var img = document.createElement('img'); img.src = "/" + v.img1; var p = document.createElement('p'); p.innerText = v.info; div.appendChild(img); div.appendChild(p); if (k % 4 == 1) { $('#container').children(':eq(0)').append(div); } else if (k % 4 == 2) { $('#container').children(':eq(1)').append(div); } else if (k % 4 == 3) { $('#container').children(':eq(2)').append(div); } else if (k % 4 == 0) { $('#container').children(':eq(3)').append(div); } else { } }) } }) }) </script> </body> </html>
到此,相信大家对“怎么使用jQuery代码实现瀑布流页面”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。