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
  • JS reverse order traversal implementation code

    JS reverse order traversal implementation code

    The most commonly used traversal method is for statements (also recursive and while). When we traverse an array, we usually do this: copy the code as follows: var arr = [1,2,3,4,5,6,7,8,9,10]; for(var i=0,total=arr.lengt
    2025-05-18
  • Bugs that stretch on both sides of the button in IE

    Bugs that stretch on both sides of the button in IE

    When you write buttons (input, button), you will find that under IE: As the number of words increases, the spacing between the two sides will become larger and larger. In WIN's XP style, when the number of words is large, there will be severe jagging
    2025-05-18
  • How to force click ads in javascript

    How to force click ads in javascript

    This article describes the method of forced clicking ads in JavaScript. Share it for your reference. The specific details are as follows: The JavaScript code for forced clicking on ads introduced here will take effect by clicking on the ad first and then
    2025-05-18
  • How to achieve image floating effect by js

    How to achieve image floating effect by js

    This article describes the method of JS to achieve image floating effect. Share it for your reference. The specific analysis is as follows: Description: When you open the web page, you will see pictures that are constantly floating, click to connect to ot
    2025-05-18
  • Introduction to HTML link anchor tags and their role in SEO

    Introduction to HTML link anchor tags and their role in SEO

    <a>Tags are mainly used to define links and bookmarks, and are also called hyperlinks or anchor links. The most common usage is the following: establish a hyperlink href attribute and jump to the link in the middle of href=.</a> <a href=https://www.VeVb.c
    2025-05-18
  • HTML tutorial: Introduction to modify the attributes of the image size alignment interval border

    HTML tutorial: Introduction to modify the attributes of the image size alignment interval border

    Image tags:<img> Insert an image into the page, we need to use the img tag, and its attribute is src for example code:<img src=test.jpg> Conclusion: Here we assume that the image file and the html file are in the same directory. Similarly, we can give the
    2025-05-18
  • HTML Tutorial: Definition List

    HTML Tutorial: Definition List

    Original text: http://andymao.com/andy/post/104.html Previous section: After writing the unordered list and the ordered list, someone told me that these two articles were meaningless. If these two articles are only read in one-way reading, it is indeed me
    2025-05-18
  • js implements a method similar to the add(1)(2)(3) call method

    js implements a method similar to the add(1)(2)(3) call method

    The code copy is as follows: var add = function(a){return function(b){return function(c){return a+b+c;};};}; add(1)(2)(3); //6 That's right! If it is add(1)(2)
    2025-05-18
  • Example sharing of javascript drop-down box option click event

    Example sharing of javascript drop-down box option click event

    I am a technician engaged in front-end development. The drop-down box is the page element we use more. Today, I will talk about some examples of the drop-down box registration event based on the problems encountered in actual work. I hope it will be helpf
    2025-05-18
  • 6 Instructions for Use of Infrequently Used HTML Tags

    6 Instructions for Use of Infrequently Used HTML Tags

    First: <abbr>Or <acronym>these two logos are the same thing, mainly used in some English abbreviations. When you move the mouse up, you will find a small prompt to prompt the full name of the abbreviation. Here is an example:</acronym></abbr>
    2025-05-18
  • Recommended HTML Basic Summary (Title)

    Recommended HTML Basic Summary (Title)

    HTML: Heading is through<h1> -<h6> etc. define the tag.<h1> Define the largest title.<h6> Define the smallest title.<h1> This is a heading</h1><h2> This is a heading
    2025-05-18
  • Ensure the overall simplicity of the website, the detailed design of the web designer

    Ensure the overall simplicity of the website, the detailed design of the web designer

    Article introduction of Wulin.com (www.vevb.com): Details determine success or failure: Some details that need to be paid attention to in website design. Introduction: Details determine success or failure. Practitioners in the design industry should have
    2025-05-18
  • JavaScript custom array sorting method

    JavaScript custom array sorting method

    This article describes the JavaScript custom array sorting method. Share it for your reference. The specific analysis is as follows: Array has its own sorting function, which is more convenient to use. One thing we must be clear about is the basis for sor
    2025-05-18
  • Recommended HTML, CSS, JavaScript quick lookup tables

    Recommended HTML, CSS, JavaScript quick lookup tables

    In fact, the quick lookup table is to help us gather the most commonly used information in our daily life, making it easier to use, and make us more efficient when doing our work. With them, your brain is free from the trouble of spending extra time remem
    2025-05-18
  • The difference between html ReadOnly and Enabled

    The difference between html ReadOnly and Enabled

    The TextBox of the ReadOnly property will be displayed as such a mark on the client: <input readonly = readonly> The TextBox of the Enabled property will be displayed as such a mark on the client: <input disabled=disabled>
    2025-05-18