读《html5+css3+jqMobile》笔记

  1. html5 新增

    对SEO有好

  2.  按照原始排版显示

  3. 上标 下标

  4. 表格标题

  5. target 属性 在不同窗口显示

  6. 文本框 autofocus 属性 可以自动获取焦点

  7. type=color 选择颜色

  8. type=range vlue=5 min=1 max=10

  9. 只有 Chrome 和 Safari 6 支持 标签。

  10. 标签定义视频,比如电影片段或其他视频流
    MP4 = MPEG 4文件使用 H264 视频编解码器和AAC音频编解码器
    WebM = WebM 文件使用 VP8 视频编解码器和 Vorbis 音频编解码器
    Ogg = Ogg 文件使用 Theora 视频编解码器和 Vorbis音频编解码器
    MP4 video/mp4
    WebM video/webm
    Ogg video/ogg
    https://www.runoob.com/tags/tag-video.html
    https://www.runoob.com/tags/tag-audio.html

  11. Web Storage https://baike.baidu.com/item/web%20storage/9488039?fr=aladdin
    if(typeof(Storage)==“undefined”){
    不支持
    }else{
    Web Storage 代码
    }

  12. @import url(CSS文件路径地址); 在 css引用css

  13. CSS 属性 选择器
    https://www.runoob.com/css/css-attribute-selectors.html

  14. 排版 margin border padding

  15. z-index: 层级关系

  16. body{ cursor: url(…)} 改变鼠标光标样子

  17. jQuery 选择器 https://www.runoob.com/jquery/jquery-selectors.html

  18. jQuery Mobile https://www.runoob.com/jquerymobile/jquerymobile-install.html

  19. `

你可能感兴趣的:(读书笔记,html5,html5,jquery,css3)