加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
数学系的挨踢者 提交于 2019-10-09 17:41 . third commit
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>搞笑GIF</title>
<style type="text/css">
*{padding:0;margin:0;}
body{background:#333;}
ul{list-style:none;}
li{text-align:center;border:1px solid #d8d5d5;margin:18px 8px;padding:16px 0px;border-radius:10px;background:#fff;}
img{width:100%;}
h1{font-size:16px;text-align:left;margin:10px 20px 20px;font-weight:200;}
h2{text-align:right;font-size:12px;font-weight:200;margin:9px 12px -7px 0;}
@media screen and (min-width:440px){
body{width:440px;margin:0 auto;}
}
section{position:fixed;bottom:30px;right:20px;}
a{background:#598263;color:#fff;width:64px;padding:10px 20px;margin-left:10px;border-radius:10px;font-size:14px;}
.page{position:fixed;right:8px;top:8px;font-size:14px;padding:4px 8px;color:red;background:antiquewhite;border-radius:8px;}
</style>
</head>
<body>
<div class="container">
<span class="page"></span>
<ul></ul>
<section>
<a onclick="prePage()">上一页</a>
<a onclick="nextPage()">下一页</a>
</section>
</div>
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript">
var refresh = function(page){
$.ajax({
type:'GET',
url:'https://interface.sina.cn/tech/gif/album.d.json?num='+20+'&page='+page+'&jsoncallback=jsonp1&_=1570606601560',
async:false,
dataType: "jsonp",
jsonp: "callback",
jsonpCallback: "jsonp1",
success:function(msg){
$('ul').empty();
msg.data.forEach(function(currentValue, index, arr){
$('ul').append('<li><h1>'+ msg.data[index].name +'</h1><img src="http:'+ msg.data[index].img_url+'"/><h2>'+msg.data[index].createtime+'</h2></li>')
})
}
})
$('.page').html('当前所在第'+page+'');
}
refresh(1);
var page=1;
var prePage = function(){
if(page == 1){
alert('这里是首页哦');
refresh(page);
}else{
page--;
refresh(page);
}
}
var nextPage = function(){
page++;
refresh(page);
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化