读metronic文档学到的几个知识点

1.RTL 

  同样的页面,它做了两套。为什么,因为在这个世界上,有些民族,有些语种,是从右向左来的。

2. google material design

  同样的一套东西,又分别做了google material 版,那默认版是什么呢?flat design版。

  google的设计师是怎么想的呢?

  引用一张图,来自知乎

      

  还记得,ipod旋转的马达声吗,就是这个意思。

  

时间: 2024-07-31 03:16:58

读metronic文档学到的几个知识点的相关文章

跟着文档学python(二):time.time() 与 time.clock() 的对比与总结

一,两个函数的文档: 1,time.time(): time.time() Return the time in seconds since the epoch as a floating point number. Note that even though the time is always returned as a floating point number, not all systems provide time with a better precision than 1 sec

跟着文档学python(三):zip (Python function, in 2. Built-in Functions)

一,函数的文档: zip(): zip(*iterables) Make an iterator that aggregates elements from each of the iterables. Returns an iterator of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables. The iterator stops w

转载 - 读网上文档 - 笔记 - JS 编程最佳实践(Best Practice)

原文地址: 1). JavaScript Best Practices: http://www.w3schools.com/js/js_function_closures.asp 2). JavaScript Closures http://www.w3schools.com/js/js_function_closures.asp 3). JavaScript 严格模式 http://blog.csdn.net/supersky07/article/details/14129179 1. 关于全

跟着文档学Vue(三)——组件基础

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" con

Excel文档间的数据替换 ---电脑版APP 自动操作魔法师

http://www.won-soft.com/macro/solution/excel-data-replace.htm 介绍: 在我们的日常工作中, 可能经常需要使用同各种数据表格打交道.比如财务工作中各种数据表格, 生产管理上的各种生产数据统计表,以前人力资源部的工资表等等.在处理这些数据的过程中, 我们可能经常会遇到要做一张表,但这张表的数据需要从另一张表上取,每个数据间有一些相关联的规则,举例来说: 年底一般都会做工资统计表,列出所有员工的全年的各种奖金总计.全年应发工资.实发工资.扣

IO流-ZIP文档

java中通常使用ZipInputStream来读ZIP文档 ZIP文档(通常)以压缩格式存储了一个或多个文件,每个ZIP文档都有一个包含诸如文件 名字和所使用的压缩方法等信息的头.在Java中,可以使用ZipInputStream来读入ZIP文档. 你可能需要浏览文档中每个单独的项,getNextEntry方法就可以返回一个描述这些项的 ZipEntry类型的对象.ZipInputStream的read方法被修改为在碰到当前项的结尾时返回-1 (而不是碰到ZIP文件的末尾) ,然后你必须调用c

C# 将内容写入txt文档

<1>  FileStream fs = new FileStream(@"D:\text.txt", FileMode.Append); StreamWriter sw = new StreamWriter(fs, Encoding.Default); sw.Write(strAnalasy); sw.Close(); fs.Close(); <2>  FileStream TreatProcess = new FileStream(@"文件目录&q

对xml文档内容进行增删查改

直接添代码: XML文档名称(one.xml) <?xml version="1.0" encoding="UTF-8" standalone="no"?><school> 北京大学 <student> 00012 <name>张三</name> <birthday name="mmmmmm">8月26日</birthday></stud

显示XML文档时排序数据

先看XML文档: 也可拷贝下面代码另存为XMl文档: <stepList> <steps> <step> <order>1</order> <stepName>基丰盛的</stepName> </step> <step> <order>3</order> <stepName>个个个个</stepName> </step> <step&