Hand in Hand to Learn VUE: Second-tier Component Development and Common Global api

Video tutorial Please move because you don't support video links https://www.henrongyi.top What can you learn? Of course, the second video is a little more difficult than the first one. If the previous content has not been digested, we suggest that you continue to digest the previous content, and then look at the next part. This part is the co ...

Posted by greatstar00 on Tue, 07 May 2019 17:35:39 -0700

[bzoj3210][Chebyshev Distance] Flower god's watering party

Description Under the guidance of the flower teacher, there is a gathering every 4 days, commonly known as "water" activities. See BZOJ3153 for details of water activities But that's not the point There are many fantasy questions, each with two reference coefficients: code difficulty and algorithm difficulty. Flower g ...

Posted by waol on Mon, 06 May 2019 01:25:39 -0700

Hand in Hand to Learn VUE: Common Attributes of Three-Stage VUE during Construction Period

Video tutorial Please move because you don't support video link. https://www.henrongyi.top What can you learn? Hand in hand with you to learn VUE entry three files, VUE constructor internal use of various attributes, methods, computed, watch, filters, these four attributes, will often be used in the work. There are many mixed attributes, such ...

Posted by Thatsmej on Sat, 04 May 2019 12:30:38 -0700

Java Career - Java Foundation - GUI

Lecture 1: GUI (User Graphic Interface) I. overview 1. GUI: Graphical User Interface (GUI), a graphical user interface, is a way for computers to interact with users. 2. Two ways of computer-user interaction: GUI and CLI GUI: Graphical User Interface, Graphical User Interface, graphical user interface, to display the computer oper ...

Posted by aayatoos on Thu, 18 Apr 2019 18:36:35 -0700

Summary of XY530 Web Page Integration of Jieyu Altimeter

At the request of Party A, it is necessary to integrate the high-beat instrument into the B/S system. Several problems encountered in the integration process are summarized for reference. 1. The high-resolution camera sent by Party A was purchased from Taobao. The model is XY530. Its function is very simple and its imaging effect is very gener ...

Posted by lostincoding on Thu, 18 Apr 2019 15:30:33 -0700

Canvas 06: Canvas line ambiguity problem

When we draw a line in canvas, the default line width is 1px and the color is black. But we will find that the width of the line is wider than 1px, the color is not so black, more like gray. Let's see the effect. Code: <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, init ...

Posted by shush on Thu, 18 Apr 2019 12:30:33 -0700

Front-end Learning Notes 10 Style Enhancement Using CSS3

Enhancement with CSS3 Skip text gradient /* This code achieves the gradient effect when the mouse slides over the link */ a { color: #007c21; transition: color .4s ease; } a:hover { color: #00bf32; } Create rounded corners for elements Using CSS3, you can create rounded corners for most elements (including form elements, images, and ev ...

Posted by alconebay on Tue, 16 Apr 2019 14:24:32 -0700

Summary of Common Effect of Css

1. Whenever there is a big disaster, many websites become grey. How to make the websites grey quickly? CSS code is very simple, using the filter function of css. The code is as follows: html { filter: grayscale(100%);//IE browser -webkit-filter: grayscale(100%);//Chrome -moz-filter: grayscale(100%);//Firefox -ms-filter: grayscale(100 ...

Posted by imekul on Tue, 16 Apr 2019 09:30:32 -0700

Loading order of js in page and execution order of multiple jquery $(document).ready()

jQuery $(document).ready() execution order: Execute. ready() when all DOM elements of the page are loaded. Document. ready() is executed after the DOM structure has been drawn, without having to wait until the loading is complete. If there is javascript code before. ready() executes, how will javascript execute? The answer is to execute the ...

Posted by daneilair on Mon, 15 Apr 2019 14:54:32 -0700

Front-end rookie code snippets

Code snippets summarized in this article (1) Most need to introduce jquery Last updated March 10, 2017 1. Enter trigger code $(function(){ $('#username').focus(); //Carriage return query document.onkeydown = function(event) { var e = event || window.event || arguments.callee.caller.arguments[0]; ...

Posted by petrb on Sun, 14 Apr 2019 23:30:34 -0700