Code Monkey home page Code Monkey logo

web_tasks's People

Contributors

zewenli98 avatar

web_tasks's Issues

F3修改建议

完成地不错,有几点功能不合理的地方:
1.左边的取色面板单击无法取色,只能拖动取色,这个设计不合理
2. 不理解取色按钮的作用,点击后前景色和后景色一样是什么目的? 取色应该是点击网页上的其它区域可以获取那个点的颜色信息
3. 关于取色器的样式实现,应该使用CSS实现,而不是用背景图片来替代

F0修改建议

整体完成的不错,结构合理,不足的地方是样式选择器应该使用类名选择器,当前使用的id选择器会造成优先级过大,不利于样式的覆盖修改

F2修改建议

整体来说完成的不错

  1. 并不兼容移动端, 轮播图在移动端上应该具有合适的大小
  2. 没有实现任务所有求的触屏滑动图片的功能
  3. 频繁使用interval容易任务栈的堆积. setInteval会无条件地没隔一段时间往事件队列里添加一个任务,当你这个定时器内部的函数运行的时间大于设置的间隔、或者有什么其他的任务阻塞了JS线程,就会堆积大量的事件,尝试使用setTimeout来完成
// line 14
clearInterval(timer);
...
// line 64
function ShowTime(){
  timer = setInterval(function(){
    i++;
    if(i==$('.ig').size()){
      i=0;
    }
    Show();
  }, 3000);

P1

数据精度并不够呀~

我一开始调试的时候long也会溢出,不知道在C++里面用什么,希望学长能够指点一下~~
下面是Java代码:

import java.math.BigInteger;

public class Fibonacci {

public static void main(String[] args) {
BigInteger a = BigInteger.ONE;
BigInteger b = BigInteger.ONE;
for (int i = 0; i < 50; i++) {
System.out.print(a + " " + b + " ");
a = a.add(b);
b = a.add(b);
}
}
}

F1修改建议

登录界面

  • 都现在了,竟然还犯这种低级错误,连文件都找不到,你在自己电脑上难道就能运行成功吗?还是说忘记push了,项目文件里并没有bs文件夹
  <!-- 包含 bootstrap 样式表 -->
  <link rel="stylesheet" href="bs/css/bootstrap.min.css">
  <!-- 外部引用css样式 -->
  <link href="style.css" rel="stylesheet" type="text/css">
  <script src="bs/js/jquery.min.js"></script>
  <script src="bs/js/bootstrap.js"></script>

学生信息管理系统

  1. 问题同上
  2. 没有显示所有学生信息,添加完学生后也没有提示
  3. 分页设计还是不错的,但是在增删查改的页面内却没有目录或返回建,点进这些页面就回不去了
  4. 其它方面还是完成的很不错的

F0复审不通过

  • 文件路径有问题, 请勿使用绝对路径
  • 请在Linux下编程!
        <link href="E:\web_tasks\F0\style.css" rel="stylesheet" type="text/css">
	<!-- 外部引用js样式 -->
	<script type="text/javascript" src="E:\web_tasks\F0\outer.js"></script>

串门

单纯打酱油路过


过来串个门ヽ(゚∀゚*)ノ━━━ゥ♪

顺便说这个README我给满分Hhhh

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.