当前位置:   article > 正文

十五届蓝桥杯 web应用开发答案_第十五届蓝桥杯大赛个人赛web

第十五届蓝桥杯大赛个人赛web

动态tab栏:

        到达一定高度 固定不动

  1. position: sticky;
  2. top: 0;

地球漫游:

按线性进行无线循环:

  animation: orbit 36.5s linear infinite;

题三:迷惑的this:

this.的作用域:

  1. handle() {
  2. this.inputEl.addEventListener('input', this.handleInput.bind(this));
  3. }

题四:魔法失灵了

const { value } = toRefs(data);

题五:燃烧你的卡路里

  1. const submit = async() => {
  2. drawer.value = true;
  3. };
  4. const sortItem = (arr, pro, compare) => {
  5. arr.sort((a, b) => b[pro] - a[pro]);
  6. for (let item of arr) {
  7. if (item[pro] <= compare) {
  8. return item;
  9. }
  10. }
  11. return null;
  12. };

题六:司龄计算

  1. const groupByAge = (peoples) => {
  2. const groups = {};
  3. peoples.forEach(person => {
  4. if (!groups[person.age]) {
  5. groups[person.age] = [];
  6. }
  7. groups[person.age].push(person);
  8. });
  9. return groups;
  10. };
  1. var list = JSON.parse(JSON.stringify(groupedPeople.value))
  2. for(let k in list){
  3. xAxisData._rawValue.push(list[k])
  4. seriesDate._rawValue.push(lisk[k].length)
  5. }

题九:贪吃蛇

因为有事 本人没有及时更新不好意思 这是另一个博主写的:(转载)【蓝桥杯Web】第十五届蓝桥杯(Web应用开发)模拟赛1期-大学组 | 全部答案-CSDN博客

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/705732
推荐阅读
相关标签
  

闽ICP备14008679号