博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery-可收缩面板
阅读量:6819 次
发布时间:2019-06-26

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

可收缩的面板(像Gmai收件箱面板l)。可以应用在文章、新闻评论列表中。见图效果:

js:

    
<style type=
"text/css"
>
        
*
        
{
            
margin
:
0
;
            
padding
:
0
;
        
}
        
body
        
{
            
margin
:
10px 
auto
;
            
width
:
570px
;
            
font
:
75%
/
120% 
Arial
,
Helvetica
,
sans-serif
;
        
}
        
p
        
{
            
padding
:
0 
0 
1em
;
        
}
        
/* message display page */
        
.message_list
        
{
            
list-style
:
none
;
            
margin
:
0
;
            
padding
:
0
;
            
width
:
383px
;
        
}
        
.message_list li
        
{
            
padding
:
0
;
            
margin
:
0
;
            
background
:
url
(images/collapsible-panels/message-bar.gif)
no-repeat
;
        
}
        
.message_head
        
{
            
padding
:
5px 
10px
;
            
cursor
:
pointer
;
            
position
:
relative
;
        
}
        
.message_head .timestamp
        
{
            
color
:
#666666
;
            
font-size
:
95%
;
            
position
:
absolute
;
            
right
:
10px
;
            
top
:
5px
;
        
}
        
.message_head cite
        
{
            
font-size
:
100%
;
            
font-weight
:
bold
;
            
font-style
:
normal
;
        
}
        
.message_body
        
{
            
padding
:
5px 
10px 
15px
;
        
}
        
.collapse_buttons
        
{
            
text-align
:
right
;
            
border-top
:
solid 
1px 
#e4e4e4
;
            
padding
:
5px 
0
;
            
width
:
383px
;
        
}
        
.collapse_buttons a
        
{
            
margin-left
:
15px
;
            
float
:
right
;
        
}
        
.show_all_message
        
{
            
background
:
url
(images/collapsible-panels/tall-down-arrow.gif)
no-repeat 
right 
center
;
            
padding-right
:
12px
;
        
}
        
.show_recent_only
        
{
            
display
:
none
;
            
background
:
url
(images/collapsible-panels/tall-up-arrow.gif)
no-repeat 
right 
center
;
            
padding-right
:
12px
;
        
}
        
.collpase_all_message
        
{
            
background
:
url
(images/collapsible-panels/collapse-
all
.gif)
no-repeat 
right 
center
;
            
padding-right
:
12px
;
            
color
:
#666666
;
        
}
    
</style>

  

    
  1. someone: 1 minute ago

    Hello Nick,

    This is the latest message display. The rest are collapsed by default

  2. nick: 2 minutes ago

    message here

  3. someone: 1 day ago

    message here

  4. nick: 2 days ago

    message here

  5. someone: 3 days ago

    message here

  6. nick: 5 days ago

    message here

  7. someone: 6 days ago

    message here

  8. nick: 7 days ago

    message here

  9. someone: 8 days ago

    message here

Show all message (9) Show 5 only Collapse all

 

作者:
出处:
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
http://www.cnblogs.com/wangyuelang0526/archive/2012/06/04/2534745.html
你可能感兴趣的文章
英特尔披露新的预测执行漏洞L1终端故障
查看>>
Vue.js表单控件绑定
查看>>
如何撰写好文档?精益文档的六个实践
查看>>
魔鬼存在于细节中:从Redshift迁移到ClickHouse后再无数据丢失
查看>>
上学还是坐牢?百年老校“监控”学生惹争议
查看>>
作者访谈录——关于战略、领导力以及灵魂
查看>>
Linux 下 docker 安装 MySQL
查看>>
在生产环境中安全地运行Docker容器
查看>>
.NET Core 2.1预览版首次引入Global Tools
查看>>
基于英特尔® 架构的 GigaSpaces InsightEdge Platform*
查看>>
Confluent平台5.0支持LDAP授权及用于IoT集成的MQTT代理
查看>>
微服务接口限流的设计与思考(附GitHub框架源码)
查看>>
网络故障排查常用命令集
查看>>
Spring RESTful + Redis全注解实现恶意登录保护机制
查看>>
MySQL 中 整数类型的存储和范围计算过程详解
查看>>
堡垒跳板机实现——架构实现
查看>>
时间戳防盗链鉴权php实现
查看>>
CSS-背景图片位置 | background-position
查看>>
金蝶汽车网络获大搜车A轮融资 加速进军汽车行业信息化领域
查看>>
001 SpringBoot 介绍
查看>>