博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
左侧手风琴下拉菜单导航(网页常用功能)
阅读量:6295 次
发布时间:2019-06-22

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

效果如下:

代码如下:

html:

jQuery手风琴下拉菜单代码 - 站长素材

选择器

  • #id
  • element
  • .class
  • *

属性

  • attr
  • removeAttr
  • prop
  • removeProp
  • addClass
  • removeClass

文档处理

  • append
  • appendTo
  • prepend
  • prependTo
  • after
  • before

事件

  • ready
  • on
  • off
  • bind
  • one
  • trigger
  • hover
  • click
  • focus

AJAX

  • $.ajax
  • $.get
  • $.getJSON
  • $.getScript
  • $.post

效果

  • show
  • hide
  • toggle
  • slideDown
  • slideUp
  • slideToggle
  • fadeIn
  • fadeOut
  • fadeTo
  • fadeToggle
  • stop

css:

@charset "UTF-8";*{
margin: 0; padding: 0; font-family: "Microsoft YaHei", Arial, sans-serif; font-size: 14px;}.list_dt{
background: #333; color: white; width: 120px; padding: 0 40px 0 20px; height: 34px; line-height: 34px; cursor: pointer; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; position: relative; border-bottom: 1px solid #464646;}.list_dt:hover{
background: #222;}.list_dt:hover ._after{
display: block; width: 3px; height: 100%; position: absolute; left: 0; top: 0; background: #4285F4;}#open{
background: #222;}#open ._after{
display: block; width: 3px; height: 100%; position: absolute; left: 0; top: 0; background: #4285F4;}.list_dt_icon{
position: absolute; right: 10px; top: 9px; display: block; width: 16px; height: 16px; background: url("../images/off.png") no-repeat;}#open .list_dt_icon{
background: url("../images/open.png") no-repeat;}.list_dd{
display: none;}.list_li{
background: #4e4e4e; list-style-type: none; color: white; width: 120px; padding: 0 30px; height: 34px; line-height: 34px; cursor: pointer; border-bottom: 1px solid #6b6b6b;}.list_li:hover{
background: #4285F4;}

 

转载于:https://www.cnblogs.com/liuyanxia/p/8578260.html

你可能感兴趣的文章
python 学习
查看>>
PXC DDL 操作阻塞写
查看>>
flappy bird游戏源代码揭秘和下载后续---移植到android真机上
查看>>
Python字符串处理函数
查看>>
防止DDOS***
查看>>
linux磁盘配额
查看>>
RHEL5 kickstart 安装小结
查看>>
【书签】格式化nginx.conf文件的工具
查看>>
shell安装samba服务
查看>>
学会分析网站空间日志
查看>>
SelectBox插件
查看>>
iptables总结
查看>>
Docker多台宿主机间的容器互联-centos7
查看>>
014、Linux下vim搜索与替换
查看>>
Thrift在windows下的使用
查看>>
3Mysql 的常用操作
查看>>
tomcat配备禁止url显示jsessionid
查看>>
IDE ,SAS,SATA,SCSI,SSD硬盘的主要区别
查看>>
Android的Framework分析---4硬件抽象HAL
查看>>
JS中字符串的相关操作
查看>>