基于layui实现简单的计分板页面

2024-08-26 07:28

本文主要是介绍基于layui实现简单的计分板页面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  使用Layui、HTML、CSS练手做了个简单的计分板页面(虽然HTML和CSS学的很烂,而且页面尺寸变化时对齐还有问题)。布局采用的Layui的栅格系统,同时使用Layui的按钮、弹出层模块设置样式及获取用户输入,同时调用jQuery相关功能获取或设置元素值。主要实现的功能如下:
  1)点击主队、客队的文字区域弹出输入框修改文字内容;
  2)点击比分区域、局分区域,当前数值自动加1;
  3)点击重置得分将比分清零;
  4)点击重置比赛将局分、比分清零。

  页面截图及全部代码如下所示。后续准备再拿万智牌生命计数器练练手。
在这里插入图片描述
在这里插入图片描述

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>电子记分牌</title><link rel="stylesheet" href="./layui/css/layui.css"><script src="./layui/layui.js"></script><style>.score{height: 200px;width: 200px;background-color:lightskyblue;color: red;border-radius:20px;font-family: "Times New Roman", Times, serif;font-weight: bold;font-size: 150px;text-align: center;cursor: pointer;}.score-left{margin-left: auto;}.score-right{margin-right: auto;}           .match{width: 50px;background-color:lightgreen;margin-top: 50px;font-weight: bold;font-size: 30px;text-align: center;cursor: pointer;}.match-left{left: 0px;}.match-right{margin-left: auto;}.player{font-size: 20px;cursor: pointer;}            .player-left{margin-left: 60%;}.player-right{margin-left: 40%;}</style></head><body>		<div class="layui-container">            <div class="layui-row"><div class="layui-col-xs6"><div class="layui-row"><div class="player player-left">主队</div></div><div class="layui-row"><div class="layui-col-xs9"><div class="score score-left">0</div></div><div class="layui-col-xs1"><div class="match match-left">0</div></div>                </div></div><div class="layui-col-xs6"><div class="layui-row"><div class="player player-right">客队</div></div><div class="layui-row"><div class="layui-col-xs3"><div class="match match-right">0</div></div><div class="layui-col-xs9"><div class="score score-right">0</div></div></div></div></div><div class="layui-row" style="margin-left: 40%;"><div class="layui-btn-container">                    <button class="reset-point layui-btn">重置局分</button><button class="reset-game layui-btn">重置比赛</button></div></div><div class="layui-row" style="text-align: center;">鼠标左键单击比分区域增加分数</div></div>  <script>layui.use('layer', function(){var $ = layui.jqueryvar layer = layui.layer;  $('.player-left').on('click', function(){layer.prompt({title: '输入主队名称'}, function(pass, index){layer.close(index);$('.player-left').html(pass)                   });});$('.player-right').on('click', function(){layer.prompt({title: '输入客队名称'}, function(pass, index){layer.close(index);$('.player-right').html(pass)                   });});$('.score-left').on('click', function(){$('.score-left').html(parseInt($('.score-left').html())+1)   });$('.score-right').on('click', function(){$('.score-right').html(parseInt($('.score-right').html())+1)   });$('.match-left').on('click', function(){$('.match-left').html(parseInt($('.match-left').html())+1)   });$('.match-right').on('click', function(){$('.match-right').html(parseInt($('.match-right').html())+1)   });$('.reset-point').on('click', function(){$('.score-left').html(0) $('.score-right').html(0) });$('.reset-game').on('click', function(){$('.score-left').html(0) $('.score-right').html(0) $('.match-left').html(0) $('.match-right').html(0)  });})</script> </body>
</html>

参考文献:
[1]https://www.layui1.com/doc/index.html
[2]https://jquery.com/
[3]https://www.w3school.com.cn/css/index.asp

这篇关于基于layui实现简单的计分板页面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1107927

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu2289(简单二分)

虽说是简单二分,但是我还是wa死了  题意:已知圆台的体积,求高度 首先要知道圆台体积怎么求:设上下底的半径分别为r1,r2,高为h,V = PI*(r1*r1+r1*r2+r2*r2)*h/3 然后以h进行二分 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#includ

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

如何在页面调用utility bar并传递参数至lwc组件

1.在app的utility item中添加lwc组件: 2.调用utility bar api的方式有两种: 方法一,通过lwc调用: import {LightningElement,api ,wire } from 'lwc';import { publish, MessageContext } from 'lightning/messageService';import Ca

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

usaco 1.3 Prime Cryptarithm(简单哈希表暴搜剪枝)

思路: 1. 用一个 hash[ ] 数组存放输入的数字,令 hash[ tmp ]=1 。 2. 一个自定义函数 check( ) ,检查各位是否为输入的数字。 3. 暴搜。第一行数从 100到999,第二行数从 10到99。 4. 剪枝。 代码: /*ID: who jayLANG: C++TASK: crypt1*/#include<stdio.h>bool h

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount