Giter VIP home page Giter VIP logo

teamlab_1's Introduction

______________________________________________

【プロジェクト名】Todoリスト
【作成者】田岡菜
【制作日】2016/12/20
【動作環境】Google Chrome
【開発言語】Javascript,html
______________________________________________
プログラムの組み合わせ以外で追加した機能/仕様

⒈降順
▶︎最新のタスクが一番上にくる仕様
該当コード
>>html.reverse()
⒉チェックボックス
▶︎タスク終了時にチェックを入れることができるボックスが文頭に付く仕様
該当コード
>>for(var j = 0; j < html.length; j++) {
    var text = html[j];
    var checkList = `<p> <input type="checkbox" name="todo" value="${j}">` + text + '</p>';
    list.append(checkList);
⒊取り消し線
▶︎チェックボックスにチェックを入れると取り消し線が引かれる
該当コード
>>$(":checkbox").click(function() {
    if ($(this).is(":checked")) $(this).closest("p").css("text-decoration", "line-through");
    else $(this).closest("p").css("text-decoration", "none");
⒋**揃え
該当コード
>><CENTER> </CENTER>
⒌ロゴ

teamlab_1's People

Contributors

staoka avatar

Watchers

 avatar

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.