Rock scissors WeChat Mini Program Game

I. Overview

I took a course assignment from my junior before, but for some reason, I finally changed to a new reptile project.

This homework is a rock-and-scissors WeChat game. It is a random stand-alone PK with the system , and there is no connection for the time being. There is no cloud server, but you can use the method of round-robin to play with multiple people online. Although the content is small, there are traditional basic frameworks.

2. Topic content

  • Topic content : Make a WeChat applet that can play rock-scissors guessing game

  • Design features :
    welcome interface
    , game interface,
    game history interface,
    team author interface

  • Implementation modules :
    - WeChat mini-program front-end module
    based on WeChat mini-program, using WXML data binding and list rendering module
    Using JavaScript and back-end communication module
    https://developers.weixin.qq.com/miniprogram/dev/reference /wxml
    - Web server module
    Flask lightweight web server framework based on python language
    https://flask.palletsprojects.com/en/2.3.x/
    - Database storage module
    Based on the persistent storage solution of Sqlite3 micro database, better management Data
    https://www.sqlite.org/index.html

  • Design language:
    WXML (WeiXin Markup Language): It is a set of labeling language for frame design, combined with basic components and event system, it can build the structure of the page
    WXSS (WeiXin Style Sheets): It is a set of style language, used to describe WXML Component styles, used by WXSS to determine how WXML components should be displayed.
    JavaScript : JavaScript is the most popular scripting language on the Internet, which can be used in HTML and the web
    Python : Python is an interpreted, object-oriented, high-level programming language with dynamic data types.

3. Effect

The video will be uploaded later, and it has been reviewed

Stand-alone Rock Paper Scissors

insert image description here

4. Front-end source code

CSDN resources: rock scissors step stand-alone version of WeChat applet front end

Or private me in the comment area later

5. Backend source code

CSDN resources: rock-paper-scissors stand-alone version python background

Private me in the comment area later

Guess you like

Origin blog.csdn.net/qq_43680827/article/details/130957385