Home> Web design tutorial
All Dreamweaver tutorial Javascript tutorial HTML tutorial CSS tutorial Experience and skills DHTML tutorial Web effects WEB standardization
Web design tutorial
  • Create a creative 404 page using html5 and css3

    Create a creative 404 page using html5 and css3

    Can your website 404 page help others remember your website? Below we introduce a creative 404 page created by html5 and css3. The 404 page must also be very creative. Let’s take a look at the editor of Wulin.com today to bring you another creative 404 pa
    2025-09-01
  • JS realizes simple and easy-to-use mobile phone floating window display effect

    JS realizes simple and easy-to-use mobile phone floating window display effect

    This article describes the simple and easy-to-use mobile phone floating window display effect. Share it for your reference, as follows: html: <style type="text/css">.fdBonTel{ width:100%; height:53px; position:fix
    2025-09-01
  • Use call to implement js inheritance

    Use call to implement js inheritance

    Copy the code as follows: //Use call method to implement js inheritance function A(color) { this.Acolor = color; this.AshowColor = function() { document.writeln("Aco
    2025-09-01
  • A brief analysis of ui-router and ng-grid modules in angularJS

    A brief analysis of ui-router and ng-grid modules in angularJS

    I was bored at home, and I happened to find a tutorial about angular online. I learned the two modules of angular, ui-router and ng-grid, and imitated it and made a small thing. The code has been uploaded to github, the address is here https://github.co
    2025-09-01
  • Things about JavaScript's input box that limits the number of words

    Things about JavaScript's input box that limits the number of words

    Preface Recently, the product needs to do a lot of input boxes. The interactive effect the product wants is: the user can enter Chinese and English, and as the user input enters, the number of characters that have been entered can be displayed in real tim
    2025-09-01
  • Simple way to get the actual length of a string (including Chinese characters) by JS

    Simple way to get the actual length of a string (including Chinese characters) by JS

    Method 1: var jmz = {};jmz.GetLength = function(str) { ///<summary> Get the actual length of the string, Chinese 2, English 1</summary> ///<param name="str"> To get the character of length
    2025-09-01
  • A solution to multiplying floating point numbers in Javascript

    A solution to multiplying floating point numbers in Javascript

    Multiplying floating point numbers in Javascript is a very interesting thing. There are many ways to multiply floating point numbers. Here is a solution I gave that I think is good for myself: copy the code as follows: function FxF(f1, f2) {f1 += '&#3
    2025-09-01
  • Quick Start of Intermediate Javascript Syntax

    Quick Start of Intermediate Javascript Syntax

    1. Talk about Javascript objects. Javascript is a language with a weak language type and a dynamic type language. In the process of using Javascript, Javascript built-in objects and customized objects are often needed. 1.1 How to create an object Javasc
    2025-09-01
  • Overview of fieldsets in HTML and use

    Overview of fieldsets in HTML and use

    The HTML was not studied well before, which made it feel very novel when I saw the control group style. Fieldset> tag packages part of the form content and generates a set of related forms fields. Next, the use of the fieldset tag in HTML is explained
    2025-09-01
  • Angularjs implements paging function and sample code

    Angularjs implements paging function and sample code

    Preface to implementing paging based on Angularjs. Before learning any language, there must be business needs to drive you to learn it. Of course, ng is no exception. Before learning ng, the first demo I wanted to do was to implement paging based on ng. I
    2025-09-01
  • A picture glass fragment effect implemented by html5 canvas

    A picture glass fragment effect implemented by html5 canvas

    html5 canvas realizes the glass fragment effect of picture. The picture appears in the interface in the form of glass fragments, and then the effect is gradually getting news like the glass is broken. The effect is very good. Friends who like it can refer
    2025-09-01
  • Introduction to several modes of creating objects in javascript

    Introduction to several modes of creating objects in javascript

    There are several modes in js that can create objects, and operate the properties and methods contained in the object. Generally speaking, the first letter of the constructor name is a capital letter, and the first letter of the non-constructor name is a
    2025-09-01
  • Detailed explanation of how child objects access parent objects in JavaScript

    Detailed explanation of how child objects access parent objects in JavaScript

    In traditional object-oriented programming languages, a special syntax for subclass access to parent classes is provided. Citations We often need additional assistance from parent classes when implementing subclass methods. In this case, the subclass usua
    2025-09-01
  • js friendly time return function

    js friendly time return function

    This article has shared the function code for JS to display friendly time for your reference. The specific content is as follows //Friendly time return function (such as: 10 minutes ago) time_stamp is UNIX seconds function friendly_time(time_stamp){ var n
    2025-09-01
  • Javascript basics_Implementation method of marking text

    Javascript basics_Implementation method of marking text

    Basic Javascript_Implementation method of marking text 1. Use basic text elements to mark content first to see the display effect: corresponding HTML code:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8">
    2025-09-01