当前位置:   article > 正文

19春招多益网络前端笔试题_多益网络前端开发春招笔试题

多益网络前端开发春招笔试题

今天参加了多益网络的笔试题,做的一塌糊涂,好多基础的都不会,需要好好反思下自己的不足:

1、写出手机号的正则表达式

^1[3|4|5|7|8]\d{9}$    ^开始符号 首位为1 第2位为3或4或5或7或8 后面9位为任意数字  $结束符号

2、css的继承属性

字体系列:font、font-size、font-weight

文本系列:text-align、line-height、color、text-transform

cursor、visibility、list-style

3、css制作动画效果的3个属性

transition、transform、animation(这个我当时只想到了一个。。。。)

4、Promise的例子

这个前两天才看的,结果又忘了,也是服了自己了。。。

  1. function aaa(){
  2. var p = new Promise(function(resolve,reject){
  3. setTimeout(function(){
  4. console.log('11111');
  5. resolve('2222');
  6. },1000);
  7. });
  8. return p;
  9. }
  10. aaa()
  11. .then(function(data){
  12. console.log(data);
  13. });

5、css绘制一个直角梯形

一开始想到了border,但设置了高度,所以没有成功

  1. <head>
  2. <style>
  3. .mask
  4. {
  5. height: 0;
  6. width: 100px;
  7. border-top: 100px solid red;
  8. border-left: 37px solid transparent;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <div class="mask"></div>
  14. </body>

6、HTTP协议请求方式

get、post、put、head、connect、trace、options、delete

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/820336
推荐阅读
相关标签
  

闽ICP备14008679号