仿360新闻的热搜图片,win8风格随机九宫格布局
360新闻地址:http://sh.qihoo.com/i/
感觉这效果挺好的,随机九宫格,在不少地方可以用到,就研究了下他的源码,基本原理就是预先定义好几种布局模块,然后根据需要进行拼接,具体代码可以看下面的,复制下运行看效果吧。
源码打包下载地址:http://download.csdn.net/detail/sweetsuzyhyf/7107063
代码在这里:
- <html>
- <head>
- <title>win8九宫格随机布局</title>
- <style>
- #bd_toptab {
- width: 980px;
- margin: 0 auto;
- height: 256px;
- position: relative;
- }
- #bd_toptab .tabwrap {
- height: 234px;
- overflow: hidden;
- position: relative;
- width: 980px;
- }
- #bd_toptab .refresh {
- cursor: pointer;
- height: 38px;
- position: absolute;
- right: 0;
- top: 0;
- z-index: 1;
- width: 37px;
- background-color: green;
- }
- #bd_toptab .tabblock {
- background: #fff;
- height: 234px;
- overflow: hidden;
- position: absolute;
- width: 980px;
- }
- #bd_hot {
- position: relative;
- width: 980px;
- }
- #bd_hotimg .refresh:hover, #bd_hot .refresh:hover {
- background-position: -40px -200px;
- }
- #bd_hot .hot_wrap {
- height: 234px;
- position: relative;
- }
- #bd_hot .box {
- background: #ccc;
- color: #fff;
- overflow: hidden;
- position: absolute;
- text-align: center;
- }
- #bd_hot .box img {
- height: 100%;
- width: 100%;
- }
- #bd_hot .box a {
- color: #fff;
- display: block;
- height: 100%;
- text-decoration: none;
- overflow: hidden;
- width: 100%;
- }
- #bd_hot .box .main_title {
- cursor: pointer;
- display: inline-block;
- font-family: 'Microsoft Yahei';
- padding: 0 10px;
- }
- #bd_hot .box .sub_title {
- color: #ccc;
- }
- #bd_hot .box div {
- background: rgba(0,0,0,.8);
- bottom: 0;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000,endColorstr=#cc000000) \9 height:100%;
- left: 0;
- position: absolute;
- width: 100%;
- height: 0;
- }
- #bd_hot .box div p {
- cursor: pointer;
- font-size: 12px;
- font-weight: 400;
- line-height: 18px;
- text-align: left;
- padding: 0 8px;
- }
- #bd_hot .box p strong {
- display: block;
- padding-bottom: 5px;
- }
- #bd_hot .box .tp_11 {
- font-size: 16px;
- }
- #bd_hot .box .tp_12 {
- font-size: 18px;
- }
- #bd_hot .box .tp_21 {
- font-size: 18px;
- }
- #bd_hot .box .tp_22 {
- font-size: 22px;
- }
- </style>
- </head>
- <body>
- <div id="bd_toptab">
- <div class="refresh">点击刷新</div>
- <div class="tabblock" id="tabblock"></div>
- </div>
- <script src="jquery-1.9.1.min.js"></script>
- <script>
- var tpl = [[{ size: [1, 1], pos: [0, 0] }, { size: [1, 1], pos: [1, 0] }, { size: [2, 2], pos: [0, 1] }], [{ size: [2, 2], pos: [0, 0] }, { size: [1, 1], pos: [0, 2] }, { size: [1, 1], pos: [1, 2] }], [{ size: [1, 1], pos: [0, 0] }, { size: [1, 1], pos: [1, 0] }, { size: [1, 2], pos: [0, 1] }, { size: [1, 1], pos: [1, 1] }, { size: [1, 1], pos: [1, 2] }], [{ size: [1, 1], pos: [0, 0] }, { size: [1, 1], pos: [1, 0] }, { size: [1, 1], pos: [0, 1] }, { size: [1, 1], pos: [0, 2] }, { size: [1, 2], pos: [1, 1] }], [{ size: [1, 2], pos: [0, 0] }, { size: [1, 1], pos: [1, 0] }, { size: [1, 1], pos: [1, 1] }, { size: [1, 1], pos: [0, 2] }, { size: [1, 1], pos: [1, 2] }], [{ size: [1, 1], pos: [0, 0] }, { size: [1, 1], pos: [0, 1] }, { size: [1, 2], pos: [1, 0] }, { size: [1, 1], pos: [0, 2] }, { size: [1, 1], pos: [1, 2] }], [{ size: [2, 1], pos: [0, 0] }, { size: [1, 1], pos: [0, 1] }, { size: [1, 1], pos: [1, 1] }, { size: [1, 1], pos: [0, 2] }, { size: [1, 1], pos: [1, 2] }], [{ size: [1, 1], pos: [0, 0] }, { size: [1, 1], pos: [1, 0] }, { size: [2, 1], pos: [0, 1] }, { size: [1, 1], pos: [0, 2] }, { size: [1, 1], pos: [1, 2] }], [{ size: [1, 1], pos: [0, 0] }, { size: [1, 1], pos: [1, 0] }, { size: [1, 1], pos: [0, 1] }, { size: [1, 1], pos: [1, 1] }, { size: [2, 1], pos: [0, 2] }]];
- var colors = ["#6e89a0", "#3e6181", "#f19b83", "#f3ab97", "#6696c1"];
- var data = [
- {
- "id": "12281",
- "title": "传刘德华加盟好声音",
- "ltitle": "传刘德华加盟好声音 收3千万顶替哈林",
- "url": "",
- "img": "http://p1.qhimg.com/dr/93_93_/t01626c454c447b2ec9.jpg?size=550x252"
- },
- {
- "id": "11886",
- "title": "麻花春晚小品再被毙",
- "ltitle": "开心麻花小品被毙 李敏镐现身春晚彩排现场",
- "url": "#",
- "img": ""
- },
- {
- "id": "12275",
- "title": "邓紫棋身价飙升25倍",
- "ltitle": "《我是歌手2》邓紫棋连夺两冠身价飙升25倍",
- "url": "",
- "img": "http://p3.qhimg.com/dr/93_93_/t018e3d49ab6025f006.jpg?size=550x380"
- },
- {
- "id": "12211",
- "title": "李娜表态不上春晚",
- "ltitle": "李娜表态坚决不会上春晚:冯小刚call我就关机",
- "url": "",
- "img": ""
- },
- {
- "id": "12276",
- "title": "第56届格莱美颁奖礼",
- "ltitle": "第56届格莱美颁奖礼落幕 电音入室显革新",
- "url": "",
- "img": "http://p4.qhimg.com/dr/93_93_/t01f028185fe6b09e79.jpg?size=600x374"
- },
- {
- "id": "12264",
- "title": "男子误点下跪求上车",
- "ltitle": "男子乘火车误点 向车站人员下跪求上车",
- "url": "",
- "img": ""
- },
- {
- "id": "12263",
- "title": "新华网发玉兔日记",
- "ltitle": "新华网发“玉兔”日记:可能熬不过这个月夜了",
- "url": "",
- "img": ""
- },
- {
- "id": "12119",
- "title": "杀医案被告获死刑",
- "ltitle": "温岭杀医案被告人获死刑 被认定有完全刑事责任能力",
- "url": "",
- "img": "http://p4.qhimg.com/dr/93_93_/t0147aa8f01295c6a20.jpg?size=400x264"
- },
- {
- "id": "12268",
- "title": "瑞典世界最古老树木",
- "ltitle": "瑞典发现世界最古老树木:活了9500岁 仍在生长",
- "url": "",
- "img": "http://p6.qhimg.com/dr/93_93_/t016c4c90a96bf75756.jpg?size=950x635"
- },
- {
- "id": "11074",
- "title": "中国失独家庭超百万",
- "ltitle": "中国失独家庭已超百万 每年约增长7.6万个",
- "url": "",
- "img": ""
- },
- {
- "id": "12273",
- "title": "巴西民众抵制世界杯",
- "ltitle": "再现打砸抢!巴西上千民众抵制世界杯",
- "url": "",
- "img": "http://p0.qhimg.com/dr/93_93_/t01f07017f6636f0ca4.jpg?size=845x566"
- },
- {
- "id": "12269",
- "title": "罗德曼因送大礼被查",
- "ltitle": "罗德曼送金正恩夫妇奢华大礼遭调查 超1万美元",
- "url": "",
- "img": "http://p7.qhimg.com/dr/93_93_/t01f9191af27087271b.jpg?size=550x309"
- },
- {
- "id": "12262",
- "title": "高富帅卖保时捷被埋",
- "ltitle": "高富帅网卖300万保时捷 被神秘买家电击后活埋",
- "url": "",
- "img": ""
- },
- {
- "id": "12266",
- "title": "斯诺登称将不再泄密",
- "ltitle": "斯诺登:不会也没有能力继续泄密",
- "url": "",
- "img": "http://p4.qhimg.com/dr/93_93_/t0110ee3195d656a495.jpg?size=460x276"
- },
- {
- "id": "12261",
- "title": "深圳车牌拍卖新高",
- "ltitle": "深圳车牌靓号拍卖新高:粤B8888R拍出172万",
- "url": "",
- "img": "http://p1.qhimg.com/dr/93_93_/t012bf84b38ad056a4f.jpg?size=550x372"
- },
- {
- "id": "12260",
- "title": "员工创业可停薪留职",
- "ltitle": "江西规定国企员工创业可停薪留职三年惹争议",
- "url": "",
- "img": ""
- },
- {
- "id": "12005",
- "title": "H7N9不排除人传人",
- "ltitle": "卫计委:H7N9不排除有限的非持续人传人",
- "url": "",
- "img": "http://p9.qhimg.com/dr/93_93_/t01bff3e08df1870ab1.jpg"
- },
- {
- "id": "12259",
- "title": "多省医保收不抵支",
- "ltitle": "人社部:多省医保当期收不抵支",
- "url": "",
- "img": "http://p5.qhimg.com/dr/93_93_/t013f2464192e661f46.jpg?size=298x400"
- },
- {
- "id": "12005",
- "title": "H7N9不排除人传人",
- "ltitle": "卫计委:H7N9不排除有限的非持续人传人",
- "url": "",
- "img": "http://p9.qhimg.com/dr/93_93_/t01bff3e08df1870ab1.jpg"
- },
- {
- "id": "12259",
- "title": "多省医保收不抵支",
- "ltitle": "人社部:多省医保当期收不抵支",
- "url": "",
- "img": "http://p5.qhimg.com/dr/93_93_/t013f2464192e661f46.jpg?size=298x400"
- }
- ];
- $("#bd_toptab .refresh").click(function () {
- $("#tabblock").empty();
- tpl.sort(function () { return 0.5 - Math.random() });
- data.sort(function () { return 0.5 - Math.random() });
- var html = '<div id="bd_hot">', count = 0, l = t = w = h = 0, s = 4;
- for (var i = 0; i < 4; i++) {
- for (var k = 0; k < tpl[i].length; k++) {
- if (count >= data.length) {
- break;
- }
- var item = tpl[i][k];
- w = item.size[0] == 1 ? 119 : 242;
- h = item.size[1] == 1 ? 75 : 154;
- l = item.pos[0] == 0 ? 246 * i : 246 * i + 123;
- if (item.pos[1] == 0) {
- t = 0;
- } else if (item.pos[1] == 1) {
- t = 79;
- } else {
- t = 158;
- }
- item = data[count];
- html += '<div class="box" style="width:' + w + 'px;height:' + h + 'px;top:' + t + 'px;left:' + l + 'px;background-color:' + colors.sort(function () { return 0.5 - Math.random() })[0] + '"><a href="' + item.url + '" target="_blank" class="img tp_12">';
- if (item.img) {
- html += '<img src="' + item.img + '" />';
- }
- html += '<span class="main_title">' + item.title + '</span><div><p><strong>' + item.title + '</strong><span class="sub_title">' + item.ltitle + '</span></p></div></a></div>';
- count++;
- }
- }
- html += '</div>';
- $("#tabblock").html(html);
- $('#tabblock .box').each(function () {
- var _this = $(this), _title = _this.find('.main_title'), _p = _this.find('p'), h = _this.height();
- _title.css('padding-top', (h - _title.height()) / 2 + 'px');
- _p.css('padding-top', (h - _p.height()) / 2 + 'px');
- _this.hover(function () {
- _this.find('div').animate({ height: '100%' }, 300);
- }, function () {
- _this.find('div').animate({ height: '0' }, 300);
- });
- });
- }).click();
- </script>
- </body>
- </html>
仿360新闻的热搜图片,win8风格随机九宫格布局的更多相关文章
- 基于jquery仿360网站图片选项卡切换代码
今天给大家分享一款基于jquery仿360网站图片选项卡切换代码.这款实例适用浏览器:IE8.360.FireFox.Chrome.Safari.Opera.傲游.搜狗.世界之窗.效果图如下: 在线预 ...
- Web编程基础--HTML、CSS、JavaScript 学习之课程作业“仿360极速浏览器新标签页”
Web编程基础--HTML.CSS.JavaScript 学习之课程作业"仿360极速浏览器新标签页" 背景: 作为一个中专网站建设出身,之前总是做静态的HTML+CSS+DIV没 ...
- C#制作高仿360安全卫士窗体<一>
开始写这一系列博客之前先要向大家说声抱歉,放肆雷特建立很久却很少有更新.当然博客人气也不旺,大部分都是看的人多评论收藏的人少.一直想要改变这种状态,正好赶上了最近工作上做了一个高仿360安全卫士窗体. ...
- html5--项目实战-仿360囧图
html5--项目实战-仿360囧图 实例: 代码 <!doctype html> <html> <head> <meta charset="utf ...
- C#制作高仿360安全卫士窗体<二>
继上次C#制作高仿360安全卫士窗体<一>发布之后响应还不错,我的博客放肆雷特也来了不少的新朋友,在这里先谢谢大家的支持!我自己也反复看了一下觉得对不起大家,写的非常乱而且很少文字介绍.在 ...
- C#制作高仿360安全卫士窗体(四)- 水晶按钮
项目越来越紧,我也乐此不疲.自从上次C#制作高仿360安全卫士窗体(三)出来之后,就开始有一些人在说为什么还在坚持写这么落后的东西.我想说的是,我是从事企业信息化工作的,所有程序都只对内部使用.所以只 ...
- C#制作高仿360安全卫士窗体(三)
距上篇C#制作高仿360安全卫士窗体(二)也将近一个多月了,这个月事情还是像往常一样的多.不多我也乐在其中,毕竟我做的是我喜欢做的东西.今天特地抽空把怎么制作文本框写一下.同时也希望有爱好这些玩意的同 ...
- Android 开源框架ActionBarSherlock 和 ViewPager 仿网易新闻客户端
转载请注明出处:http://blog.csdn.net/xiaanming/article/details/9971721 大家都知道Android的ActionBar是在3.0以上才有的,那么在3 ...
- C#制作高仿360安全卫士窗体3
C#制作高仿360安全卫士窗体(三) 距上篇C#制作高仿360安全卫士窗体(二)也将近一个多月了,这个月事情还是像往常一样的多.不多我也乐在其中,毕竟我做的是我喜欢做的东西.今天特地抽空把怎么制作 ...
随机推荐
- 安装vb6 正在更新系统 无响应
新装的win10系统,安装vb6时,最后一直卡在“正在更新系统”,程序无响应,没办法,kill掉后,貌似不影响软件使用,但是安装vs6sp6B无法成功安装. 解决办法是: 不安装“数据访问”组件. 参 ...
- 从0开始学习blockchain
http://www.8btc.com/build-your-own-blockchain
- Html复杂表头的实现
实现效果 代码实现
- PHP socket模拟POST请求
<?php if (! function_exists ( 'socket_post' )) { function socket_post($url, $data, $referer = '') ...
- Astyle编程语言格式化工具的说明
1.工具->扩展和更新,搜astyle插件,下载安装重启,当前是2.0版本. 2.工具->选项->AStyle Formatter->Edit,填入下面的,点击save,确定. ...
- HDU1860:统计字符
Problem Description 统计一个给定字符串中指定的字符出现的次数 Input 测试输入包含若干测试用例,每个测试用例包含2行,第1行为一个长度不超过5的字符串,第2行为一个长度不超 ...
- 关于微信分享功能开发的一些bug
wx.onMenuShareTimeline({//onMenuShareTimeline title: (h('#mainForm').children('.content').inf('value ...
- Linux教程之配置权限受限制的SFTP
SFTP 在Linux下是一个很方便很安全的文件传输工具,我常常用它在Linux服务器上替代传统的ftp来传输文件.众所周知SFTP账号是基于SSH账号的,默认情况下访问服务器的权限很大,下面的教程就 ...
- AJAX程序实验
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 < ...
- linux 配置tomcat服务器
1. 找到tomcat安装包 find / -name apache-tomcat* 2. 解压包 tar zxvf apache-tomcat-7.0.67.tar.gz rpm -ivh j ...