Example code for implementing a QR code scanning box with CSS

Example code for implementing a QR code scanning box with CSS

We usually have a scanning box when we open the camera, and sometimes a static QR code will also add a frame for focusing and facilitating scanning. Here's how to implement a frame through CSS

Effect:

The code is as follows:

html:

<div class="img-box">
    <img class="code" src="https://image-static.segmentfault.com/149/570/149570997-5b987cc928d69_articlex">
</div>

css:

.img-box {
  background: linear-gradient(#ae0000, #ae0000) left top,
    linear-gradient(#ae0000, #ae0000) left top,
    linear-gradient(#ae0000, #ae0000) right top,
    linear-gradient(#ae0000, #ae0000) right top,
    linear-gradient(#ae0000, #ae0000) right bottom,
    linear-gradient(#ae0000, #ae0000) right bottom,
    linear-gradient(#ae0000, #ae0000) left bottom,
    linear-gradient(#ae0000, #ae0000) left bottom;
  background-repeat: no-repeat;
  background-size: 2px 20px, 20px 2px;
  height: 116px;
  width: 116px;
}        
.code {
    height: 110px;
    width: 110px;
    margin-top: 2px;
    margin-left:2px;
    border: 1px solid #ae0000;
}    

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Implementation of tomcat deployment project and integration with IDEA

>>:  mysql implements adding time automatically adding and updating time automatically updating operation

Recommend

Solve the margin: top collapse problem in CCS

The HTML structure is as follows: The CCS structu...

Detailed explanation of JavaScript closure issues

Closures are one of the traditional features of p...

Detailed explanation of Angular data binding and its implementation

Table of contents Preface What is data binding? T...

js to achieve the effect of light switch

This article example shares the specific code of ...

WeChat applet implements search box function

This article example shares the specific code for...

In-depth explanation of iterators in ECMAScript

Table of contents Preface Earlier iterations Iter...

How to create a project with WeChat Mini Program using typescript

Create a project Create a project in WeChat Devel...

Implementing long shadow of text in less in CSS3

This article mainly introduces how to implement l...

Summary of common problems and solutions in Vue (recommended)

There are some issues that are not limited to Vue...

17 excellent web designs carefully crafted by startups

Startups often bring us surprises with their unco...

JS version of the picture magnifying glass effect

This article shares the specific code of JS to ac...

Detailed tutorial for springcloud alibaba nacos linux configuration

First download the compressed package of nacos fr...

MySQL Installer Community 5.7.16 installation detailed tutorial

This article records the detailed tutorial of MyS...

Detailed steps for installing ros2 in docker

Table of contents Main topic 1. Install Docker on...