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
  • Use js to get the original size of the image

    Use js to get the original size of the image

    The size of the image displayed in the browser may not be its real height and width. For example, like below, we will add width and height styles to it.<img src="IE.png"> This shows the size in the browser to be 25px. So how do we get the real size of the
    2025-05-29
  • Methods to implement voice search box using html5

    Methods to implement voice search box using html5

    Comment: As a professional Taobao controller, I don’t know when I found out that there is voice search on Taobao. Okay, because of curiosity, I still want to find out. However, if I think people who are more careful will find that they are only available
    2025-05-29
  • Javascript Learning Notes Functions (IV): arguments object

    Javascript Learning Notes Functions (IV): arguments object

    Each Javascript function can access a special variable - arguments within its scope. This variable contains a list of all parameters passed to the function. The arguments object is not an array. Although syntactically it has the same place as an array, fo
    2025-05-29
  • Introduction to some usages of JavaScript date types

    Introduction to some usages of JavaScript date types

    I believe that when you are in elementary school, you will know how many days there are in a year and twelve months. There is a special existence here - February. February in a leap year has 29 days, and February in a non-leap year has only 28 days. I gue
    2025-05-29
  • Introduction to the conversion of object into number or string rules in JavaScript

    Introduction to the conversion of object into number or string rules in JavaScript

    During the JavaScript program writing process, JS will automatically convert the object into number or string and then process it according to different contexts. The rules for this automatic conversion are as follows: The rules for automatically converti
    2025-05-29
  • Guide to using regular expressions in javascript

    Guide to using regular expressions in javascript

    How to use 1. Create expressions Methods to create regular expression classes in JavaScript: var regex = new RegExp("//d{5}") or 2.var regex = / /d{5} / (recommended)/expression/is specially designed for simplicity in JavaScript
    2025-05-29
  • Chrome's latest version 4.0 supports GreaseMonkey script

    Chrome's latest version 4.0 supports GreaseMonkey script

    GreaseMokey (Chinese call it Oil Monkey script) was previously just a plug-in of Firefox, which can be used to add some simple and useful plug-ins to expand the functions and experience of your browser. It is generally written in HTML + JavaScript, and ha
    2025-05-29
  • Zen HTML Elements Friends who use zen coding can bookmark it

    Zen HTML Elements Friends who use zen coding can bookmark it

    html¶<html></html>html:xml¶<html xmlns=http://www.w3.org/1999/xhtml xml:lang=ru></html>html:4t¶<!DOCTYPE
    2025-05-29
  • How to clear content selection by JS

    How to clear content selection by JS

    This article describes how JS clears the selection content. Share it for your reference. The specific analysis is as follows: Today, when I was doing a DIV dragging effect, I found that the text on the page will be selected when dragging, so I found the r
    2025-05-29
  • js method to get checkbox value

    js method to get checkbox value

    This article describes the method of obtaining checkbox value by js. Share it for your reference. The specific implementation method is as follows: Copy the code code as follows:<html><head>
    2025-05-29
  • html5 web local storage will replace our cookies

    html5 web local storage will replace our cookies

    Comment: In html5, we have provided a local cache mechanism, which will replace our cookies, and it will not be posted with the browser. The cache in our server side mainly includes localStorage and sessionStorage. For details, please read this article pr
    2025-05-29
  • JS+CSS implements draggable pop-up prompt box

    JS+CSS implements draggable pop-up prompt box

    This article describes the implementation of draggable pop-up prompt box by JS+CSS. Share it for your reference. The specific implementation method is as follows: Copy the code code as follows:
    2025-05-29
  • JavaScript framework design reading notes module loading system

    JavaScript framework design reading notes module loading system

    Module loading actually divides js into many modules for easy development and maintenance. Therefore, when loading many js modules, it is necessary to load dynamically to improve the user experience. Before introducing the module loading library, we will
    2025-05-29
  • Markup Language - CSS Layout

    Markup Language - CSS Layout

    Click here to return to the Wulin.com HTML tutorial column. If you want to browse the CSS tutorial, please click here. Above: Markup Language - Print Style. Chapter 12 CSS layout The book has been discussing the main elements of the page, that is, the con
    2025-05-29
  • 8 powerful tips for HTML web page production

    8 powerful tips for HTML web page production

    While there are many web-making tools now that make it easy for you to get your job done, you can get more control if you use HTML, here are a few tips. 1. use <tt>, <i>,<br> <pre>It is much better to control text layout than to use sentences. Such as: <
    2025-05-28