Building Front-end Monitoring System from Zero-to Control iframe Forward and Backward
Preface
This series of articles aims to explain how to build a front-end monitoring system from scratch.
The project has been sourced
Project address:
https://github.com/bombayjs/b... (web sdk)
https://github.com/bombayjs/b... (Server, for providing api) (not finished)
https://github.com/bombayjs/b... (Background management system, visual d ...
Posted by smc on Wed, 09 Oct 2019 03:58:20 -0700
Build a front-end monitoring system from scratch: loop selection (no burying point)
Preface
This series of articles aims to explain how to build a front-end monitoring system from scratch.
The project has been sourced
Project address:
https://github.com/bombayjs/b... (web sdk)
https://github.com/bombayjs/b... (Server, for providing api) (not finished)
https://github.com/bombayjs/b... (background management system, visual d ...
Posted by russian_god on Mon, 07 Oct 2019 13:20:46 -0700
JavaScript Implements Exporting CSV Files
The data structure obtained through the interface is as shown above, and now the data is exported through JavaScript:
<script type="text/javascript" src="json2csv.js"></script>
<script type="text/javascript">
var title = Object.keys(jsonData.list[0]);
var ...
Posted by sbrinley on Mon, 07 Oct 2019 00:41:33 -0700
Application of H5 dragging method in VUE
There are many pulling wheels on the Internet, but there are always some demands that the wheels can't meet. When the use of wheels can not meet their own needs, the use of H5 native dragging method has the following advantages:
api is rich and flexible to implement drag-and-drop requirements
It a ...
Posted by anita999 on Fri, 04 Oct 2019 08:59:00 -0700
Phaser Source Parsing of Dead java Synchronization Series
problem
(1) what is Phaser?
(2) What are the characteristics of Phaser?
(3) Phaser's advantages over Cyclic Barrier and Count Down Latch?
brief introduction
Phaser, translated into stages, is suitable for a scenario where a large task can be accomplished in multiple stages, and tasks in each stage can be executed concurrently by multiple thread ...
Posted by Peuplarchie on Thu, 03 Oct 2019 20:01:40 -0700
js listens for custom attributes on div Tags
I haven't blogged for a long time. Maybe I've met a bottleneck recently. There's nothing to write about, and I haven't had much time to change my job recently.
Now the job has changed, so more likely to slowly go to the native js direction.
Go straight to the code.
<!DOCTYPE html>
<html la ...
Posted by freakus_maximus on Thu, 03 Oct 2019 06:46:17 -0700
Loop structure in JS
while loop:Syntax: while (expression) { code... }Rules of implementation:The expression (expression) is judged first, and if it is true, the code is executed in a loop, and then the judgement is made...If it is false, it will not enter. Note: If expression is false for the ...
Posted by esport on Thu, 03 Oct 2019 00:29:26 -0700
Conflict Resolution between swiper and SUI Framework Roadcasting Map
Conflict Resolution between swiper and SUI Framework Roadcasting Map
Code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My life</title>
<meta name="viewport" content="in ...
Posted by MichaelHe on Wed, 02 Oct 2019 20:00:56 -0700
Common methods commonly used at the front end
In the first two periods, I have simply encapsulated the Golden Map Tool class that I have learned. In this period, I will put forward some commonly used tool classes as a separate module. In order to facilitate the later collation and everyone's mutual learning.
1. Formatting time
/**
* @param {(O ...
Posted by croix on Tue, 01 Oct 2019 23:44:45 -0700
Responsive Management Background Sidebar Processing Based on Asp.Net Core MVC and AdminLTE
Explain:
.NET Core version: 2.2
AdminLTE version: 2.4.18
Bootstrap version: 3.4.1
font-awesome version: 4.7.0
1. New project using VS 2017: AdminLteDemo, add area Admin when finished
Add files in the Areas/Admin/Views folder and add the following code separately, mainly for reference and page layouts, w ...
Posted by BlooPanthr on Tue, 24 Sep 2019 18:43:21 -0700