博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用jquery来实现类似“网易新闻”横向标题滑动的移动端页面
阅读量:4928 次
发布时间:2019-06-11

本文共 1894 字,大约阅读时间需要 6 分钟。

HTML:

CSS:

#navbar{    background: rgba(247,247,247,0.95);    overflow: hidden;    position: relative;    text-align: center;    font-size: 1em;    padding-left: 5px;    line-height: 28px;}#navbar_content{    font-size: 1em;    text-align: left;    white-space: nowrap;    position: relative;}.channel{    vertical-align: top;    display: inline-block;    padding: 0 5px;    color: rgba(0,0,0,0.6);    font-weight: normal;    line-height: 26px;    border-bottom: 2px solid transparent;}.channel.active {    color: #1c88cd;    border-color: #1c88cd;}

JS:

$(function(){        console.log($('#navbar').width())        var total_width=0;        var div_arr=$('.channel');        for(var i=0,len=div_arr.length;i
0) { new_left = '0' } $(e.currentTarget).animate({left: new_left}, 500); e.currentTarget.style.left = new_left; }); });

 

转载于:https://www.cnblogs.com/shytong/p/5041276.html

你可能感兴趣的文章
JS判断只能是数字和小数点
查看>>
SSL 2289——庆功会
查看>>
Linux命令--su与sudo
查看>>
python课堂练习
查看>>
区块链资料高清PDF合集
查看>>
xml实现AOP
查看>>
bzoj 4237稻草人
查看>>
在发送intent启动activity之前判断是否有activity接收
查看>>
html5特征检测
查看>>
1066 Bash游戏 分类: 51nod 2...
查看>>
js中几种实用的跨域方法原理详解
查看>>
打印图形
查看>>
《第一行代码》学习笔记7-活动Activity(5)
查看>>
ngx_http_core_module 模块
查看>>
两个常见的oracle索引
查看>>
一位有着工匠精神的博主写的关于IEnumerable接口的详细解析
查看>>
快速排序
查看>>
MySQL中特有的函数If函数
查看>>
安装Python3.6.2报错:zipimport.ZipImportError: can't decompress data; zlib not available
查看>>
【蓝桥杯】入门训练 Fibonacci数列
查看>>