博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【消灭代办】第5周 - null拷贝,input自适应,进度条加载,颜色随机值
阅读量:6705 次
发布时间:2019-06-25

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

 

2018.12.10 代办一:javascript中js怎么拷贝null的值

null属于简单类型的数值,直接进行拷贝即可:

2018.12.11 代办二:怎么让input自适应宽度?

这样是写下代办不久后看到的一个面试题

 解法一:flex:

  

.box{  background: rgb(218, 255, 184);  padding: 5px;  display: flex;  align-items: center;  justify-content: space-between;}input{  flex: 1;}button{  width: 80px;}

 

解法二、float布局

.box{  background: rgb(218, 255, 184);  padding: 5px;  /* display: flex;  align-items: center;  justify-content: space-between; */}.input-box{  width: 100%;  margin-left: 80px;}input{  width: 100%;  /* flex: 1; */}button{  width: 80px;  float: left;}

 

解法三、float+margin负边距

  

.box{  background: rgb(218, 255, 184);  padding: 5px;  /* display: flex;  align-items: center;  justify-content: space-between; */}.input-box{  float: left;  width: 100%;  margin-right: -80px;}input{  width: 100%;  border: 1px solid #eee;  padding: 5px 90px 4px 10px;  box-sizing: border-box;  /* flex: 1; */}button{  width: 80px;}

padding-right: 90是为了留出按钮的位置,不让按钮挡住文字。

解法四、定位布局

.box{  background: rgb(218, 255, 184);  padding: 5px;  /* display: flex;  align-items: center;  justify-content: space-between; */  position: relative;  height: 40px;}.input-box{  /* float: left;  width: 100%;  margin-right: -80px; */  position: absolute;    left: 0;    right: 80px;}input{  width: 100%;  border: 1px solid #eee;  /* padding: 5px 90px 4px 10px; */  padding: 5px 10px;  box-sizing: border-box;  /* flex: 1; */}button{  width: 80px;  position: absolute;  right: 0;}

  

2018.12.12 代办三:原生js实现进度条加载 - 数字逐步变化的那种

看到一个demo,原理是定时器+递归。觉得很不错,整理到这里:

1 
2
3

欢迎访第九站长!http://www.dijiuzhanzhang.com

4

5

6
7

 

1 *{
margin:0;padding:0;list-style-type:none;}2 a,img{
border:0;}3 body{
font:12px/180% Arial, Helvetica, sans-serif, "新宋体";}4 5 .demo{
width:750px;margin:40px auto;text-align:center;}6 .demo p{
height:38px;line-height:28px;}7 .demo p input{
border:none;background:none;font-family:arial;font-weight:bolder;}

 

1 

转自:http://www.dijiuzhanzhang.com

1、他是通过js一次性定时器+递归不断向percent结构中添加"|"元素:

 

2、标签上有name属性,然后通过

document.loading.chart.value

 

这种形式,获取input的value的方式也是很别致。  

 

3、input内部创建了一个div的场景也是第一次遇见。

看来第2条那种写法,还很值得研究啊。

 

2018.12.13 代办四:随机生成颜色值

第一种

1 function randomColor() { 2   let colorArr = ['1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'], 3     newColor = '#'; 4   for (var i = 0; i < 6; i++) { 5     newColor += colorArr[Math.floor(Math.random() * 15)] 6   } 7   console.log(newColor); 8   return newColor 9 }10 randomColor()

 

第二种

1 function getRandomColor() {2   return "#" + ("00000" + ((Math.random() * 16777215 + 0.5) >> 0).toString(16)).slice(-6);3 }

 

说明:

1、16777215为16进制的颜色ffffff转成10进制的数字
2、>>数字取整
3、转成16进制不足6位的以0来补充

转载于:https://www.cnblogs.com/padding1015/p/10095429.html

你可能感兴趣的文章
How to check Ubuntu version
查看>>
qt 试用 (3)配置编译源代码及调试
查看>>
(转)用CSS3移除点击交互元素的高亮背景
查看>>
遍历json获得数据的几种方法
查看>>
php Collection类的设计
查看>>
c++中的计时器代码
查看>>
语义Web和本体开发相关技术
查看>>
Mysql集群读写分离(Amoeba)
查看>>
Quest for sane signals in Qt - step 1 (hand coding a Q_OBJECT)
查看>>
SpringBoot的注解:@SpringBootApplication注解 vs @EnableAutoConfiguration+@ComponentScan+@Configuration...
查看>>
SQL Server性能调优之执行计划深度剖析 第一节 浅析SQL执行的过程
查看>>
利用自定义IHttpModule来实现URL地址重写
查看>>
在网页上嵌入 PowerPoint 演示文稿
查看>>
javascript日期格式化函数,跟C#中的使用方法类似
查看>>
Android杂谈--Activity、Window、View的关系
查看>>
使用delphi 开发多层应用(十)安全访问服务器
查看>>
JavaScript计算字符串中每个字符出现的次数
查看>>
mvc中的ViewData用到webfrom中去
查看>>
[转载]java.lang.OutOfMemoryError: bitmap size exceeds VM budget解决方法
查看>>
SKY IM-A800S 驱动下载
查看>>