您的位置:首页 > 娱乐 > 八卦 > 高端网站设计新感觉建站_企业宣传方式有哪些_哪里可以学网络运营和推广_上海网站seo策划

高端网站设计新感觉建站_企业宣传方式有哪些_哪里可以学网络运营和推广_上海网站seo策划

2024/10/9 22:18:38 来源:https://blog.csdn.net/weixin_68929783/article/details/142757142  浏览:    关键词:高端网站设计新感觉建站_企业宣传方式有哪些_哪里可以学网络运营和推广_上海网站seo策划
高端网站设计新感觉建站_企业宣传方式有哪些_哪里可以学网络运营和推广_上海网站seo策划

功能需求:

①列表渲染

②删除功能

③添加功能

④底部统计和清空

页面效果:

代码展示:

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>小黑记事本</title><style>body {font-family: Arial, sans-serif;}.header {background-color: #f2f2f2;padding: 20px;}.new-todo {padding: 10px;width: 300px;margin-right: 10px;}.add {padding: 10px 20px;background-color: #4CAF50;color: white;border: none;cursor: pointer;}.main {padding: 20px;}.todo-list {list-style-type: none;padding: 0;}.todo {background-color: #fff;border: 1px solid #ddd;padding: 10px;margin-bottom: 10px;position: relative;transition: background-color 0.3s ease;}.todo:hover {background-color: #f0f0f0;}.index {font-weight: bold;margin-right: 10px;}.destroy {background-color: transparent;border: none;cursor: pointer;color: red;font-size: 16px;position: absolute;top: 50%;right: 10px;transform: translateY(-50%);opacity: 1;transition: opacity 0.3s ease;}.footer {background-color: #f2f2f2;padding: 20px;text-align: center;}.todo-count {margin-right: 20px;}.clear-completed {padding: 10px 20px;background-color: #ff6347;color: white;border: none;cursor: pointer;}</style>
</head><body><!-- 主体区域 --><section id="app"><!-- 输入框 --><header class="header"><h1>小黑记事本</h1><input v-model="todoName" placeholder="请输入任务" class="new-todo" /><button class="add" @click="add">添加任务</button></header><!-- 列表区域 --><section class="main"><ul class="todo-list"><li class="todo" v-for="(item, index) in list" :key="item.id"><div class="view"><span class="index">{{ index + 1 }}.</span><label>{{item.name}}</label><button @click="del(item.id)" class="destroy">删除</button></div></li></ul></section><!-- 统计和清空 ->如果没有任务,底部隐藏掉 ->v-show--><footer class="footer" v-show="list.length>0"><!-- 统计 --><span class="todo-count">合计:<strong>{{list.length}}</strong></span><!-- 清空 --><button @click="clear" class="clear-completed">清空任务</button></footer></section><!-- 底部 --><script src="js/vue.js"></script><script>const app = new Vue({el: '#app',data: {todoName: '',list: [{ id: 1, name: '跑步一公里' },{ id: 2, name: '跳绳俩百次' },{ id: 3, name: '游泳一百米' },]},methods: {del(id) {this.list = this.list.filter(item => item.id !== id);},add() {if (this.todoName.trim() === '') {alert('请输入任务名称');return;}this.list.unshift({id: Date.now(),name: this.todoName});this.todoName = '';},clear() {this.list = [];}}});</script>
</body></html>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com