zoukankan      html  css  js  c++  java
  • Vue习惯打开卡练习

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>习惯打卡</title>
        <style>
            h3 {
                color: #666;
                text-indent: 2px;
            }
            .input {
                width: 98%;
                border-radius: 4px;
                height: 35px;
                border: 0;
                background-color: #eee;
                padding: 2px 5px;
                color: #666;
            }
            .list {
                list-style-type: none;
                margin: 10px 0;
                padding: 0;
            }
            .list li {
                padding: 8px 5px;
                height: 30px;
                line-height: 30px;
                border-bottom: 1px solid #ccc;
                font-size: 14px;
                color: #666;
                user-select: none;
            }
            .list li span.icon {
                display: inline-block;
                background-repeat: no-repeat;
                background-position: left center;
                text-indent: 32px;
                cursor: pointer;
            }
            .list li:hover {
                background-color: #eee;
            }
            .list li:hover .delete {
                display: inline-block;
            }
            .list li em {
                float: right;
                padding-right: 5px;
                font-style: normal;
            }
            .list li .delete {
                border: 0;
                background-color: transparent;
                background-image: url("img/delete.svg");
                background-repeat: no-repeat;
                text-indent: -9999px;
                cursor: pointer;
                width: 20px;
                display: none;
            }
            .total {
                text-align: center;
                color: #666;
            }
            [v-cloak] {
                display: none;
            }
        </style>
    </head>
    
    
    <body>
    
    <div id="app">
        <!--头部-->
        <header>
            <h3>习惯打卡</h3>
            <input type="text" class="input" @keyup.enter="addHabit" v-model="title" placeholder="请输入习惯名称,按回车键创建">
        </header>
        <!--主体,加上v-cloak是为了刷新不显示代码,渲染问题-->
        <section v-cloak>
            <ul class="list">
                <li v-for="(item,index) in habits">
                    <span class="icon" v-show="today !== item.today" @click="setCount(item.id)" :style="{backgroundImage:item.url}">{{item.title}}</span>
                    <span class="icon" v-show="today === item.today" style="background-image:url('img/success.svg')">{{item.title}}</span>
                    <em><b>{{item.count}}天/共坚持</b><button class="delete" @click="deleteLocalHabit(index)">删除</button></em>
                </li>
            </ul>
            <p class="total">共有{{total}}个习惯,最多坚持{{max}}天</p>
        </section>
    </div>
    
    <script src="../js/vue.js"></script>
    
    <script>
    
        //去掉提示
        Vue.config.productionTip = false
    
        //Vue实例
        const app = new Vue({
            el : "#app",
            //数据
            data () {
    
                return {
                    title : '',     //习惯标题
                    habits : [],  //习惯列表
                    today : this.getToday()
                }
    
            },
    
            //计算属性
            computed : {
                //习惯总数
                total(){
                    return this.habits.length
                },
    
                //最大坚持天数
                max(){
                    //Math取最大值
                    return Math.max.apply(null,this.habits.map(item => {
                        return item.count
                    }))
                }
            },
    
            //实例化后的钩子
            created(){
                this.habits = JSON.parse(this.getLocalHabits()) || []
                // console.log(this.habits)
                const date = this.getToday()
                console.log(date)
            },
    
            //方法
            methods: {
                //填加一条习惯
                addHabit(){
                    //console.log(this.title)
                    //时间戳
                    const time = Date.now()
    
                    //一条习惯对象
                    const habit = {
                        //id,时间戳
                        id : time,
                        //随机的url图标01-15
                        url : 'url(img/' + this.getImgName() + '.svg)',
                        //习惯标题
                        title : this.title,
                        //打卡统计
                        count : 0,
                        //写入今天日期
                        today : ''
                    }
    
                    //填加到数据列表开头位置
                    this.habits.unshift(habit)
    
                    //console.log(this.habits)
                    //更新到本地存储
                    this.setLocalHabits()
    
                    //清空输入框
                    this.title = ''
                },
    
                //删除本地储存
                deleteLocalHabit(index){
                    // console.log(index)
                    // console.log(this.habits[index].title)
                    //后悔机制
                    if (confirm('确定删除吗?')){
                        //执行删除
                        this.habits.splice(index,1)
                        //更新本地存储
                        this.setLocalHabits()
                    }
                },
    
                //01-15图标随机数
                getImgName(){
                    //随机1-15
                    const name =  Math.floor(Math.random() * 15 +1)
                    //判断个位数
                    if (name < 10){
                        return '0' + name
                    }else{
                        return name
                    }
                },
    
                //更新到本地存储
                setLocalHabits(){
                    //本地储存
                    localStorage.setItem('habits-0',JSON.stringify(this.habits))
                },
    
                //累加打卡量
                setCount(id){
                    //通过id查找匹配对象
                    const obj = this.habits.find(obj => {
                        return obj.id === id
                    })
    
                    //判断是否已经打卡
                    if (obj.today !== this.getToday()){
                        //累加
                        obj.count++
                        //设置今天的日期
                        obj.today = this.getToday()
                    }
    
                    //更新到本地储存
                    this.setLocalHabits()
                },
    
                //获取今天年月日
                getToday(){
                    //时间对象
                    const date = new Date()
    
                    //返回当天日期
                    return date.getFullYear() + '/' + (date.getMonth() + 1) + '/' + date.getDay()
                },
    
                //获取本地储存
                getLocalHabits(){
                    return localStorage.getItem('habits-0')
                }
            },
        })
    
    </script>
        
    </body>
    </html>
  • 相关阅读:
    Essential C++ 3.1 节的代码练习——哨兵方式
    Essential C++ 3.1 节的代码练习——指针方式
    《搞不定人,你如何带团队?》读书记录
    selenium+python,解决selenium弹出新页面,无法定位元素的问题(报错:Unable to locate element:元素)
    selenium 元素(class_name、link_text、css_selector)定位方法
    selenium+python+eclipse 实现 “问卷星”网站,登录与检查登录示例!
    selenium IDE中log的保存与查看方法
    selenium IDE工具页面介绍!
    selenium IDE 使用方法整理
    selenium IDE的3种下载安装方式
  • 原文地址:https://www.cnblogs.com/GarfieldTom/p/15022615.html
Copyright © 2011-2022 走看看