码迷,mamicode.com
首页 >  
搜索关键字:content types    ( 28945个结果
Tinyply 源码阅读
Tinyply 源码阅读 ply格式介绍见:http://paulbourke.net/dataformats/ply/ tinyply项目路径为:https://github.com/ddiakopoulos/tinyply/ 这里先放一个ply的示例: ply format ascii 1.0 ...
分类:其他好文   时间:2021-03-09 13:21:52    阅读次数:0
seo优化
基本体现在代码中的meta标签之中 关键字 <meta name="keywords" content="关键字1, 关键字2, 关键字3" /> 描述 <meta name="description" content="这里写对这个网页的描述"> 重定向 <meta http-equiv="ref ...
分类:其他好文   时间:2021-03-09 13:12:19    阅读次数:0
01-Java简介
Java语言简介 Java是一门面向对象编程语言,不仅吸收了C语言的各种优点,还摒弃了C里难以理解的多继承、指针等概念,因此Java语言具有功能强大和简单易用两个特征。Java语言作为静态面向对象编程语言的代表,极好地实现了面向对象理论,允许程序员以优雅的思维方式进行复杂的编程 。 Java具有简单 ...
分类:编程语言   时间:2021-03-08 14:07:17    阅读次数:0
JS 防抖节流简单应用
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:Web程序   时间:2021-03-08 14:01:59    阅读次数:0
【MUI】工作总结
1、快速创建页面结构: mDoctype HTML: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> <meta name="viewport" content="wid ...
分类:其他好文   时间:2021-03-08 13:35:36    阅读次数:0
分类筛选
async getHomes(item) { let temp = await http.getHome(); let type = []; this.content.push(type); this.show = type; for (var i = 0; i < temp.length; i++ ...
分类:其他好文   时间:2021-03-08 13:34:55    阅读次数:0
Core Python | 2 - Core Python: Getting Started | 2.6 - Objects and Types | 2.6.4 - Python's Type System
Programming languages can be distinguished by several characteristics, but one of the most important is the nature of their type system. Python could ...
分类:编程语言   时间:2021-03-08 13:34:24    阅读次数:0
jquery/js
1.jquery 获取 元素.text( ) 里面的值,需要进行去空格去换行符操作 1.1 元素.val().replace(/\ +/g,"");//去掉空格 .replace(/\ +/g,"") //去掉空格方法 1.2 元素.text().replace(/[ ]/g,""); //去掉空格 ...
分类:Web程序   时间:2021-03-06 15:02:39    阅读次数:0
[CSS] Using transform: scale(0) for hiding element
For a radio button control, when hide selected status, we can use: .input__control::before { content: ""; width: 0.5em; height: 0.5em; // box-shadow w ...
分类:Web程序   时间:2021-03-06 14:44:13    阅读次数:0
翻译:《实用的Python编程》03_05_Main_module
目录 | 上一节 (3.4 模块) | 下一节 (3.6 设计讨论) 3.5 主模块 本节介绍主程序(主模块)的概念 主函数 在许多编程语言中,存在一个主函数或者主方法的概念。 // c / c++ int main(int argc, char *argv[]) { ... } // java c ...
分类:编程语言   时间:2021-03-05 13:23:21    阅读次数:0
28945条   上一页 1 ... 27 28 29 30 31 ... 2895 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!