主頁 > 前端設計 > 【前后端分離】Springboot+Vue實作Kaptcha生成驗證碼、Graphics 2D隨機驗證碼(兩種樣式) | 通過Vue顯示到前端頁面

【前后端分離】Springboot+Vue實作Kaptcha生成驗證碼、Graphics 2D隨機驗證碼(兩種樣式) | 通過Vue顯示到前端頁面

2021-06-12 08:34:11 前端設計

閱讀目錄

  • 一、kaptcha實作代碼
    • 1. 引入坐標依賴
    • 2. CaptchaConfig
    • 3. CaptchaController
    • 4. 配置埠
    • 5. 應用程式啟動入口
  • 二、Graphics 2D實作
    • CaptchaConfig2
    • Captcha2Controller
  • 三、前端 Vue專案
    • Login.vue
    • vue.config.js
  • 四、原始碼下載

效果圖:

通過Graphics 2D實作:
在這里插入圖片描述

通過kaptcha實作:
在這里插入圖片描述

一、kaptcha實作代碼

1. 引入坐標依賴

首先在Springboot專案下的pom下加入依賴坐標:

  <!-- 驗證碼 -->
   <dependency>
       <groupId>com.github.axet</groupId>
       <artifactId>kaptcha</artifactId>
       <version>0.0.9</version>
   </dependency>     

2. CaptchaConfig

CaptchaConfig 用來配置驗證碼資訊:

package com.example.demo.util;

import com.google.code.kaptcha.impl.DefaultKaptcha;
import com.google.code.kaptcha.util.Config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @Description: 通過開源kaptcha配置驗證碼
 * @Author: liyingxia
 * @CreateDate: 2021/6/08 12:58
 */

import java.util.Properties;

@Configuration
public class CaptchaConfig {
    @Bean
    public DefaultKaptcha getDefaultCaptcha() {
        //驗證碼生成器
        DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
        //配置
        Properties properties = new Properties();
        //是否有邊框
        properties.setProperty("kaptcha.border", "yes");
        //設定邊框顏色
        properties.setProperty("kaptcha.border.color", "105,179,90");
        //驗證碼
        properties.setProperty("kaptcha.session.key", "code");
        //驗證碼文本字符顏色 默認為黑色
        properties.setProperty("kaptcha.textproducer.font.color", "blue");
        //設定字體樣式
        properties.setProperty("kaptcha.textproducer.font.names", "宋體,楷體,微軟雅黑");
        //字體大小 默認40
        properties.setProperty("kaptcha.textproducer.font.size", "30");
        //驗證碼文本字符內容范圍 默認為abced23456789gfynmnpwx
        properties.setProperty("kaptcha.textproducer.char.string", "");
        //字符長度 默認為5
        properties.setProperty("kaptcha.textproducer.char.length", "4");
        //字符間距 默認為2
        properties.setProperty("kaptcha.textproducer.char.space", "4");
        //驗證碼圖片寬度 默認為200
        properties.setProperty("kaptcha.image.width", "100");
        //驗證碼圖片高度 默認為40
        properties.setProperty("kaptcha.image.height", "40");
        Config config = new Config(properties);
        defaultKaptcha.setConfig(config);
        return defaultKaptcha;
    }
}

3. CaptchaController

contoller層控制頁面訪問

package com.example.demo.controller;

import com.google.code.kaptcha.impl.DefaultKaptcha;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.imageio.ImageIO;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.awt.image.BufferedImage;
import java.io.IOException;

/**
 * @Description: 驗證碼型別1
 * @Author: liyingxia
 * @CreateDate: 2021/6/08 12:58
 */


@RestController
public class CaptchaController {
    @Autowired
    private DefaultKaptcha defaultKaptcha;

    /*--------------獲取驗證碼-------------*/
    @GetMapping(value = "/captcha", produces = "image/jpeg")
    public void captcha(HttpServletRequest request, HttpServletResponse response) {
        // 定義response輸出型別為image/jpeg
        response.setDateHeader("Expires", 0);
        // 設定http標準
        response.setHeader("Cache-Control", "no-store,no-cache,must-revalidate");
        // 設定請求頭
        response.addHeader("Cache-Control", "post-check=0,pre-check=0");
        response.setHeader("Pragma", "no-cache");
        // 回應回傳的是image/jpeg型別
        response.setContentType("image/jpeg");


        /*--------------生成驗證碼-------------*/
        String text = defaultKaptcha.createText();  // 獲取驗證碼文本內容
        System.out.println("驗證碼為" + text);
        // 將驗證碼文本內容放入session
        request.getSession().setAttribute("captcha", text);
        // 根據文本驗證碼內容創建圖形驗證碼
        BufferedImage image = defaultKaptcha.createImage(text);
        try (ServletOutputStream outputStream = response.getOutputStream()) {
            // 輸出流輸出檔案格式為jpg
            ImageIO.write(image, "jpg", outputStream);
            outputStream.flush();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

4. 配置埠

# 埠
server.port=8008

# 資料庫
spring.datasource.url=jdbc:mysql://localhost:3306/my-sys?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=root123456
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

5. 應用程式啟動入口

CaptchaApplication:

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class CaptchaApplication {

    public static void main(String[] args) {
        SpringApplication.run(CaptchaApplication.class, args);
        System.out.println("=========專案啟動成功=========");
    }
}

啟動運行CaptchaApplication,成功運行后,通過postman測驗驗證碼,輸入http://localhost:8008/captcha,即可獲取回傳的驗證碼:
在這里插入圖片描述

二、Graphics 2D實作

CaptchaConfig2

package com.example.demo.util;


import java.awt.*;
import java.util.Random;

/**
 * @Description: Graphics2D配置驗證碼
 * @Author: liyingxia
 * @CreateDate: 2021/6/08 13:58
 */

public class CaptchaConfig2 {
    public static final int WIDTH = 150;//生成的圖片的寬度
    public static final int HEIGHT = 38;//生成的圖片的高度

    /**
     * 設定字體
     */
    public static Font font[] = {
            new Font("宋體", Font.BOLD, 24),
            new Font("宋體", Font.BOLD, 24)
    };

    /**
     * 設定背景顏色
     * @param g
     */
    public static void setBackGround(Graphics g) {
        // 設定顏色
        g.setColor(Color.WHITE);
        // 填充區域
        g.fillRect(0, 0, WIDTH, HEIGHT);
    }

    /**
     * 設定圖片的邊框
     * @param g
     */
    public static void setBorder(Graphics g) {
        // 設定邊框顏色
        g.setColor(Color.WHITE);
        // 邊框區域
        g.drawRect(1, 1, WIDTH - 2, HEIGHT - 2);
    }

    /**
     * 設定隨機干擾線條
     * @param g
     */
    public static void drawRandomLine(Graphics g) {
        // 設定線條個數并畫線
        for (int i = 0; i < 3; i++) {
            // 設定顏色
            g.setColor(getRandColorCode());
            int x1 = new Random().nextInt(WIDTH / 2);
            int y1 = new Random().nextInt(HEIGHT / 2);
            int x2 = new Random().nextInt(WIDTH) + WIDTH / 2;
            int y2 = new Random().nextInt(HEIGHT) + HEIGHT / 2;
            Graphics2D g2 = (Graphics2D) g;
            // 設定筆畫的屬性,設定線條的粗細
            g2.setStroke(new BasicStroke(2.5f));
            g2.drawLine(x1, y1, x2, y2);
        }
    }

    /**
     * 生成隨機字符
     *
     * @param g
     * @param baseChar
     * @return 隨機字符
     */
    public static String createRandomChar(Graphics2D g, String baseChar) {
        StringBuffer stringBuffer = new StringBuffer();
        int x = 15;
        String ch = "";
        // 設定生成字數
        for (int i = 0; i < 4; i++) {
            g.setFont(font[new Random().nextInt(font.length - 1)]);
            g.setColor(getRandColorCode());
            // 設定字體旋轉角度
            int degree = new Random().nextInt() % 30;
            ch = baseChar.charAt(new Random().nextInt(baseChar.length())) + "";
            stringBuffer.append(ch);
            // 正向角度
            g.rotate(degree * Math.PI / 180, x, 33);
            g.drawString(ch, x, 33);
            // 反向角度
            g.rotate(-degree * Math.PI / 180, x, 33);
            x += 25;
        }
        return stringBuffer.toString();
    }

    /**
     * 隨機顏色
     * @return
     */
    public static Color getRandColorCode() {
        int r, g, b;
        Random random = new Random();
        r = random.nextInt(256);
        g = random.nextInt(256);
        b = random.nextInt(256);
        Color color = new Color(r, g, b);
        return color;
    }

    /**
     * 畫隨機字符
     * @param g
     * @param createTypeFlag
     * @return String
     */
    public static String drawRandomNum(Graphics2D g, String... createTypeFlag) {
        // 設定顏色
        g.setColor(Color.RED);
        // 設定字體
        g.setFont(new Font(Font.SANS_SERIF, Font.BOLD, 24));
        // 常用的中國漢字
        String baseChineseChar = "\u7684\u4e00\u4e86\u662f\u6211\u4e0d\u5728\u4eba\u4eec\u6709\u6765\u4ed6\u8fd9\u4e0a\u7740\u4e2a\u5730\u5230\u5927\u91cc\u8bf4\u5c31\u53bb\u5b50\u5f97\u4e5f\u548c\u90a3\u8981\u4e0b\u770b\u5929\u65f6\u8fc7\u51fa\u5c0f\u4e48\u8d77\u4f60\u90fd\u628a\u597d\u8fd8\u591a\u6ca1\u4e3a\u53c8\u53ef\u5bb6\u5b66\u53ea\u4ee5\u4e3b\u4f1a\u6837\u5e74\u60f3\u751f\u540c\u8001\u4e2d\u5341\u4ece\u81ea\u9762\u524d\u5934\u9053\u5b83\u540e\u7136\u8d70\u5f88\u50cf\u89c1\u4e24\u7528\u5979\u56fd\u52a8\u8fdb\u6210\u56de\u4ec0\u8fb9\u4f5c\u5bf9\u5f00\u800c\u5df1\u4e9b\u73b0\u5c71\u6c11\u5019\u7ecf\u53d1\u5de5\u5411\u4e8b\u547d\u7ed9\u957f\u6c34\u51e0\u4e49\u4e09\u58f0\u4e8e\u9ad8\u624b\u77e5\u7406\u773c\u5fd7\u70b9\u5fc3\u6218\u4e8c\u95ee\u4f46\u8eab\u65b9\u5b9e\u5403\u505a\u53eb\u5f53\u4f4f\u542c\u9769\u6253\u5462\u771f\u5168\u624d\u56db\u5df2\u6240\u654c\u4e4b\u6700\u5149\u4ea7\u60c5\u8def\u5206\u603b\u6761\u767d\u8bdd\u4e1c\u5e2d\u6b21\u4eb2\u5982\u88ab\u82b1\u53e3\u653e\u513f\u5e38\u6c14\u4e94\u7b2c\u4f7f\u5199\u519b\u5427\u6587\u8fd0\u518d\u679c\u600e\u5b9a\u8bb8\u5feb\u660e\u884c\u56e0\u522b\u98de\u5916\u6811\u7269\u6d3b\u90e8\u95e8\u65e0\u5f80\u8239\u671b\u65b0\u5e26\u961f\u5148\u529b\u5b8c\u5374\u7ad9\u4ee3\u5458\u673a\u66f4\u4e5d\u60a8\u6bcf\u98ce\u7ea7\u8ddf\u7b11\u554a\u5b69\u4e07\u5c11\u76f4\u610f\u591c\u6bd4\u9636\u8fde\u8f66\u91cd\u4fbf\u6597\u9a6c\u54ea\u5316\u592a\u6307\u53d8\u793e\u4f3c\u58eb\u8005\u5e72\u77f3\u6ee1\u65e5\u51b3\u767e\u539f\u62ff\u7fa4\u7a76\u5404\u516d\u672c\u601d\u89e3\u7acb\u6cb3\u6751\u516b\u96be\u65e9\u8bba\u5417\u6839\u5171\u8ba9\u76f8\u7814\u4eca\u5176\u4e66\u5750\u63a5\u5e94\u5173\u4fe1\u89c9\u6b65\u53cd\u5904\u8bb0\u5c06\u5343\u627e\u4e89\u9886\u6216\u5e08\u7ed3\u5757\u8dd1\u8c01\u8349\u8d8a\u5b57\u52a0\u811a\u7d27\u7231\u7b49\u4e60\u9635\u6015\u6708\u9752\u534a\u706b\u6cd5\u9898\u5efa\u8d76\u4f4d\u5531\u6d77\u4e03\u5973\u4efb\u4ef6\u611f\u51c6\u5f20\u56e2\u5c4b\u79bb\u8272\u8138\u7247\u79d1\u5012\u775b\u5229\u4e16\u521a\u4e14\u7531\u9001\u5207\u661f\u5bfc\u665a\u8868\u591f\u6574\u8ba4\u54cd\u96ea\u6d41\u672a\u573a\u8be5\u5e76\u5e95\u6df1\u523b\u5e73\u4f1f\u5fd9\u63d0\u786e\u8fd1\u4eae\u8f7b\u8bb2\u519c\u53e4\u9ed1\u544a\u754c\u62c9\u540d\u5440\u571f\u6e05\u9633\u7167\u529e\u53f2\u6539\u5386\u8f6c\u753b\u9020\u5634\u6b64\u6cbb\u5317\u5fc5\u670d\u96e8\u7a7f\u5185\u8bc6\u9a8c\u4f20\u4e1a\u83dc\u722c\u7761\u5174\u5f62\u91cf\u54b1\u89c2\u82e6\u4f53\u4f17\u901a\u51b2\u5408\u7834\u53cb\u5ea6\u672f\u996d\u516c\u65c1\u623f\u6781\u5357\u67aa\u8bfb\u6c99\u5c81\u7ebf\u91ce\u575a\u7a7a\u6536\u7b97\u81f3\u653f\u57ce\u52b3\u843d\u94b1\u7279\u56f4\u5f1f\u80dc\u6559\u70ed\u5c55\u5305\u6b4c\u7c7b\u6e10\u5f3a\u6570\u4e61\u547c\u6027\u97f3\u7b54\u54e5\u9645\u65e7\u795e\u5ea7\u7ae0\u5e2e\u5566\u53d7\u7cfb\u4ee4\u8df3\u975e\u4f55\u725b\u53d6\u5165\u5cb8\u6562\u6389\u5ffd\u79cd\u88c5\u9876\u6025\u6797\u505c\u606f\u53e5\u533a\u8863\u822c\u62a5\u53f6\u538b\u6162\u53d4\u80cc\u7ec6";
        //數字和字母的組合
        String baseNumLetter = "0123456789ABCDEFGHJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
        //純數字
        String baseNum = "0123456789";
        //純字母
        String baseLetter = "ABCDEFGHJKLMNOPQRSTUVWXYZ";
        if (createTypeFlag.length > 0 && null != createTypeFlag[0]) {
            if (createTypeFlag[0].equals("ch")) {
                // 截取漢字
                return createRandomChar(g, baseChineseChar);
            } else if (createTypeFlag[0].equals("nl")) {
                // 截取數字和字母的組合
                return createRandomChar(g, baseNumLetter);
            } else if (createTypeFlag[0].equals("n")) {
                // 截取數字
                return createRandomChar(g, baseNum);
            } else if (createTypeFlag[0].equals("l")) {
                // 截取字母
                return createRandomChar(g, baseLetter);
            }
        } else {
            // 默認截取數字和字母的組合
            return createRandomChar(g, baseNumLetter);
        }
        return "";
    }

}

Captcha2Controller

package com.example.demo.controller;


import com.example.demo.util.CaptchaConfig2;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
import java.awt.*;
import java.awt.image.BufferedImage;

/**
 * @Description: 驗證碼型別2
 * @Author: liyingxia
 * @CreateDate: 2021/6/08 12:58
 */

@Controller
public class Captcha2Controller {
    @RequestMapping(value = "/captcha2", method = RequestMethod.GET)
    public void identifyPicture(HttpServletResponse response) {
        //1.創建一張圖片
        BufferedImage bi = new BufferedImage(CaptchaConfig2.WIDTH, CaptchaConfig2.HEIGHT, BufferedImage.TYPE_INT_RGB);
        //2.獲取圖片
        Graphics g = bi.getGraphics();
        //3.設定圖片的背影色
        CaptchaConfig2.setBackGround(g);
        //4.設定圖片的邊框
        CaptchaConfig2.setBorder(g);
        //5.設定圖片畫干擾線
        CaptchaConfig2.drawRandomLine(g);
        //6.設定圖片上的亂數
        //根據客戶端傳遞的 createTypeFlag標識生成驗證碼圖片 createTypeFlag = ch /n1 /n /1
        String random = CaptchaConfig2.drawRandomNum((Graphics2D) g, "nl");
        System.out.println(random);

        /* ---------將亂數存在session中------------- */
        //8.設定回應頭通知瀏覽器以圖片的形式打開
        response.setContentType("image/jpeg");
        //9.設定回應頭控制瀏覽器不要快取
        response.setDateHeader("expries", -1);
        response.setHeader("Cache-Control", "no-cache");
        response.setHeader("Pragma", "no-cache");
        //10.將圖片寫給瀏覽器
        try {
            ImageIO.write(bi, "jpg", response.getOutputStream());
        } catch (Exception e) {
        }
    }
}

接下來測驗訪問:http://localhost:8008/captcha2,如下:
在這里插入圖片描述
至此,驗證碼的邏輯就實作了,接下來我們把它顯示到前端頁面上

三、前端 Vue專案

沒有就自己創建一個,這里通過vue-cli搭建:

Login.vue

<template>
  <div class="formBg">
    <el-form :rules="rules" ref="loginForm" :model="loginForm" class="loginContainer">
      <h3 class="formTitle">系統登陸</h3>
      <el-form-item prop="username">
        <el-input type="text" auto-complete="false" v-model="loginForm.username" placeholder="請輸入用戶名"></el-input>
      </el-form-item>
      <el-form-item prop="password">
        <el-input type="password" auto-complete="false" v-model="loginForm.password" placeholder="請輸入密碼"></el-input>
      </el-form-item>
      <el-form-item prop="code" class="el-form-item__content">
        <el-input style="width: 250px" type="text" auto-complete="false" v-model="loginForm.code" placeholder="點擊圖片更換驗證碼"></el-input>
        <img :src="captchaUrl" @click="getCaptcha" title="點擊更換">
      </el-form-item>
      <el-checkbox v-model="checked" class="formCheck">記住我</el-checkbox>
      <el-button type="primary" style="width: 100%" @click="submitForm">登錄</el-button>
    </el-form>
  </div>
</template>

<script>
  import {getCodeImg, postRequest,getRequest} from '../utils/api'

export default {
  name: 'Login',
  data () {
    return {//'/captcha?time='+new Date(),
      captchaUrl: 'http://localhost:8008/captcha',
      captchaLoad: true,
      loginForm: {
        username: 'admin',
        password: '123',
        code: '',
        uuid: ''
      },
      checked: true,
      //整個頁面加載
      loading: false,
      rules: {
        username: [{ required: true, message: '請輸入用戶名', trigger: 'blur' }],
        password: [{ required: true, message: '請輸入密碼', trigger: 'blur' }],
        code: [{ required: true, message: '請輸入驗證碼', trigger: 'blur' }]
      }
    }
  },
  mounted() {
    // 加載驗證碼
    this.getCaptcha();
  },
  methods: {
    // 獲取驗證碼
    getCaptcha() {
      this.getRequest('/captcha2?time=' + new Date()).then(resp => {
        if (resp) {
          this.captchaUrl = resp.captcha2;
        }
      })
    },
    submitForm() {
     this.$refs.loginForm.validate((valid) => {
        if (valid) {
          postRequest('/login',this.loginForm).then(resp => {
            if (resp) {
              const tokenStr = resp.obj.tokenHead + resp.obj.token;
              window.sessionStorage.getItem('tokenStr',tokenStr);
              // 跳轉首頁
              this.$router.replace('/home');
            }
          })
        } else {
          this.$message.error('請輸入正確的資訊!')
          return false
        }
      })
    }
  }
}
</script>
<style scoped>
  .formBg{
    height: 900px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: url('../assets/images/y1.jpg');
  }
  .loginContainer{
    border-radius: 15px;
    background-clip: padding-box;
    margin: 180px auto;
    width: 440px;
    height: 380px;
    padding: 15px 35px 15px 35px;
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 0 25px #cac6c6;
  }
  .formTitle{
    margin: 0px auto 40px auto;
  }
  .formCheck{
    margin: 5px 0px 15px 0px;
  }
  .el-form-item__content{
    display: flex;
    align-items: center;
  }
</style>

vue.config.js

跨域代理:

let proxyObj = {}

proxyObj['/'] = {
    // websocket
    ws: false,
    // 后端目標地址
    target:'http://localhost:8008',
    // 發送請求頭host會被設定成target
    changeOrigin:true,
    // 不重寫請求地址
    pathRewrite:{
        '^/':'/'
    }
}

module.export={
    devServer:{
        host:'localhost',
        port:8080,
        proxy:proxyObj
    }
}

四、原始碼下載

鏈接:https://pan.baidu.com/s/17KAtO5Ox_QfF_i70f09JCg
提取碼:suej

轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/286783.html

標籤:其他

上一篇:前端進階全堆疊入門級教程nodeJs博客開發(一)搭建環境與路由

下一篇:前端知識體系(2)-vue篇

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • vue移動端上拉加載

    可能做得過于簡單或者比較low,請各位大佬留情,一起探討技術 ......

    uj5u.com 2020-09-10 04:38:07 more
  • 優美網站首頁,頂部多層導航

    一個個人用的瀏覽器首頁,可以把一下常用的網站放在這里,平常打開會比較方便。 第一步,HTML代碼 <script src=https://www.cnblogs.com/szharf/p/"js/jquery-3.4.1.min.js"></script> <div id="navigate"> <ul> <li class="labels labels_1"> ......

    uj5u.com 2020-09-10 04:38:47 more
  • 頁面為要加<!DOCTYPE html>

    最近因為寫一個js函式,需要用到$(window).height(); 由于手寫demo的時候,過于自信,其實對前端方面的認識也不夠體系,用文本檔案直接敲出來的html代碼,第一行沒有加上<!DOCTYPE html> 導致了$(window).height();的結果直接是整個document的高 ......

    uj5u.com 2020-09-10 04:38:52 more
  • WordPress網站程式手動升級要做好資料備份

    WordPress博客網站程式在進行升級前,必須要做好網站資料的備份,這個問題良家佐言是遇見過的;在剛開始接觸WordPress博客程式的時候,因為升級問題和博客網站的修改的一些嘗試,良家佐言是吃盡了苦頭。因為購買的是西部數碼的空間和域名,每當佐言把自己的WordPress博客網站搞到一塌糊涂的時候 ......

    uj5u.com 2020-09-10 04:39:30 more
  • WordPress程式不能升級為5.4.2版本的原因

    WordPress是一款個人博客系統,受到英文博客愛好者和中文博客愛好者的追捧,并逐步演化成一款內容管理系統軟體;它是使用PHP語言和MySQL資料庫開發的,用戶可以在支持PHP和MySQL資料庫的服務器上使用自己的博客。每一次WordPress程式的更新,就會牽動無數WordPress愛好者的心, ......

    uj5u.com 2020-09-10 04:39:49 more
  • 使用CSS3的偽元素進行首字母下沉和首行改變樣式

    網頁中常見的一種效果,首字改變樣式或者首行改變樣式,效果如下圖。 代碼: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, ......

    uj5u.com 2020-09-10 04:40:09 more
  • 關于a標簽的講解

    什么是a標簽? <a> 標簽定義超鏈接,用于從一個頁面鏈接到另一個頁面。 <a> 元素最重要的屬性是 href 屬性,它指定鏈接的目標。 a標簽的語法格式:<a href=https://www.cnblogs.com/summerxbc/p/"指定要跳轉的目標界面的鏈接">需要展示給用戶看見的內容</a> a標簽 在所有瀏覽器中,鏈接的默認外觀如下: 未被訪問的鏈接帶 ......

    uj5u.com 2020-09-10 04:40:11 more
  • 前端輪播圖

    在需要輪播的頁面是引入swiper.min.js和swiper.min.css swiper.min.js地址: 鏈接:https://pan.baidu.com/s/15Uh516YHa4CV3X-RyjEIWw 提取碼:4aks swiper.min.css地址 鏈接:https://pan.b ......

    uj5u.com 2020-09-10 04:40:13 more
  • 如何設定html中的背景圖片(全屏顯示,且不拉伸)

    1 <style>2 body{background-image:url(https://uploadbeta.com/api/pictures/random/?key=BingEverydayWallpaperPicture); 3 background-size:cover;background ......

    uj5u.com 2020-09-10 04:40:16 more
  • Java學習——HTML詳解(上)

    HTML詳解 初識HTML Hyper Text Markup Language(超文本標記語言) 1 <!--DOCTYPE:告訴瀏覽器我們要使用什么規范--> 2 <!DOCTYPE html> 3 <html lang="en"> 4 <head> 5 <!--meta 描述性的標簽,描述一些 ......

    uj5u.com 2020-09-10 04:40:33 more
最新发布
  • 我的第一個NPM包:panghu-planebattle-esm(胖虎飛機大戰)使用說明

    好家伙,我的包終于開發完啦 歡迎使用胖虎的飛機大戰包!! 為你的主頁添加色彩 這是一個有趣的網頁小游戲包,使用canvas和js開發 使用ES6模塊化開發 效果圖如下: (覺得圖片太sb的可以自己改) 代碼已開源!! Git: https://gitee.com/tang-and-han-dynas ......

    uj5u.com 2023-04-20 07:59:23 more
  • 生產事故-走近科學之消失的JWT

    入職多年,面對生產環境,盡管都是小心翼翼,慎之又慎,還是難免捅出簍子。輕則滿頭大汗,面紅耳赤。重則系統停擺,損失資金。每一個生產事故的背后,都是寶貴的經驗和教訓,都是專案成員的血淚史。為了更好地防范和遏制今后的各類事故,特開此專題,長期更新和記錄大大小小的各類事故。有些是親身經歷,有些是經人耳傳口授 ......

    uj5u.com 2023-04-18 07:55:04 more
  • 記錄--Canvas實作打飛字游戲

    這里給大家分享我在網上總結出來的一些知識,希望對大家有所幫助 打開游戲界面,看到一個畫面簡潔、卻又富有挑戰性的游戲。螢屏上,有一個白色的矩形框,里面不斷下落著各種單詞,而我需要迅速地輸入這些單詞。如果我輸入的單詞與螢屏上的單詞匹配,那么我就可以獲得得分;如果我輸入的單詞錯誤或者時間過長,那么我就會輸 ......

    uj5u.com 2023-04-04 08:35:30 more
  • 了解 HTTP 看這一篇就夠

    在學習網路之前,了解它的歷史能夠幫助我們明白為何它會發展為如今這個樣子,引發探究網路的興趣。下面的這張圖片就展示了“互聯網”誕生至今的發展歷程。 ......

    uj5u.com 2023-03-16 11:00:15 more
  • 藍牙-低功耗中心設備

    //11.開啟藍牙配接器 openBluetoothAdapter //21.開始搜索藍牙設備 startBluetoothDevicesDiscovery //31.開啟監聽搜索藍牙設備 onBluetoothDeviceFound //30.停止監聽搜索藍牙設備 offBluetoothDevi ......

    uj5u.com 2023-03-15 09:06:45 more
  • canvas畫板(滑鼠和觸摸)

    <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>canves</title> <style> #canvas { cursor:url(../images/pen.png),crosshair; } #canvasdiv{ bo ......

    uj5u.com 2023-02-15 08:56:31 more
  • 手機端H5 實作自定義拍照界面

    手機端 H5 實作自定義拍照界面也可以使用 MediaDevices API 和 <video> 標簽來實作,和在桌面端做法基本一致。 首先,使用 MediaDevices.getUserMedia() 方法獲取攝像頭媒體流,并將其傳遞給 <video> 標簽進行渲染。 接著,使用 HTML 的 < ......

    uj5u.com 2023-01-12 07:58:22 more
  • 記錄--短視頻滑動播放在 H5 下的實作

    這里給大家分享我在網上總結出來的一些知識,希望對大家有所幫助 短視頻已經無數不在了,但是主體還是使用 app 來承載的。本文講述 H5 如何實作 app 的視頻滑動體驗。 無聲勝有聲,一圖頂百辯,且看下圖: 網址鏈接(需在微信或者手Q中瀏覽) 從上圖可以看到,我們主要實作的功能也是本文要講解的有: ......

    uj5u.com 2023-01-04 07:29:05 more
  • 一文讀懂 HTTP/1 HTTP/2 HTTP/3

    從 1989 年萬維網(www)誕生,HTTP(HyperText Transfer Protocol)經歷了眾多版本迭代,WebSocket 也在期間萌芽。1991 年 HTTP0.9 被發明。1996 年出現了 HTTP1.0。2015 年 HTTP2 正式發布。2020 年 HTTP3 或能正... ......

    uj5u.com 2022-12-24 06:56:02 more
  • 【HTML基礎篇002】HTML之form表單超詳解

    ??一、form表單是什么

    ??二、form表單的屬性

    ??三、input中的各種Type屬性值

    ??四、標簽 ......

    uj5u.com 2022-12-18 07:17:06 more