class,id,var命名

CSS的class、id命名是一个很头疼的问题。查完又忘,忘完又查,索性将这些常用的命名都写在一块,找个时间特意记一下,只需一个小时的时间,应该可以把他们都记住。


常见命名1

  • .wrap或.wrapper -- 用于外侧包裹
  • .container或 .ct -- 包裹容器
  • .header -- 用于头部
  • .body -- 页面 body
  • .footer -- 页面尾部
  • aside、sidebar -- 用于侧边栏
  • .content -- 和header footer 对应,用于主要内容
  • .navigation -- 导航元素
  • .pagination -- 分页

常见命名2

  • .tabs 或.tab -- tab 切换
  • .breadcrumbs -- 导航列表、面包屑
  • .dropdown -- 下拉菜单
  • .article -- 文章
  • .main -- 用于主体
  • .thumbnail -- 头像,小图像
  • .media -- 媒体资源
  • .panel -- 面板
  • .tooltip -- 鼠标放置上去的提示
  • .popup -- 鼠标点击弹出的提示

常见命名3

  • .button、.btn -- 按钮
  • .ad -- 广告
  • .subnav -- 二级导航
  • .menu -- 菜单
  • .tag -- 标签
  • .message或者.notice -- 提示消息
  • .summary -- 摘要
  • .logo -- logo
  • .search -- 搜索框
  • .login -- 登录

常见命名4

  • .register -- 注册
  • .username -- 用户名
  • .password -- 密码
  • .banner -- 广告条
  • .copyright -- 版权
  • .modal或者 .dialog -- 弹窗

常见命名5

var 名字 ={

状态: [
'inverse,相反,倒转的',
'toggled,切换的',
'switched,转换的',
'original,原始的',
'initial,初始的',
'identified,被识别的',
'disabled,失去作用的',
'loading,加载的',
'pending,待定的',
'syncing,同步的',
'default,默认的'
],
修饰: [
'dark,暗的',
'light,亮的',
'shaded,深的',
'flat,浅的',
'ghost,虚假的',
'maroon,单独的',
'pale,暗淡的',
'intense,紧的',
'twisted,扭动的',
'narrow,窄的',
'wide,宽的',
'smooth,平滑的',
'separate,分开的',
'clean,整洁的',
'sharp,急剧的',
'aligned,整齐的'
],
元素: [
'pagination,分页',
'modal,模式',
'popup,弹出消息',
'article,文章',
'story,故事',
'flash,flash动画',
'status,状态',
'state,状态',
'media,媒体资源',
'block,块',
'card,卡片',
'teaser,片头',
'badge,标记',
'label,标注',
'sheet,工作表',
'poster,海报',
'notice,注意',
'record,记录',
'entry,入口',
'item,项目',
'figure,数字,图案',
'square,正方形',
'module,模块',
'bar,表',
'button,按钮',
'action,动作',
'knob,旋钮'
],
布局: [
'navigation,导航',
'wrapper,包裹',
'inner,内部',
'header,头部',
'footer,尾部',
'aside,侧边栏',
'section,部分',
'divider,分隔物',
'content,内容',
'container,容器',
'panel,面板',
'pane,',
'construct',
'composition',
'spacing',
'frame'
]
}

你可能感兴趣的:(class,id,var命名)