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
  • Detailed explanation of JavaScript prototype chain maintenance and inheritance

    Detailed explanation of JavaScript prototype chain maintenance and inheritance

    1. Two prototypes Many people know that javascript is a prototype inheritance. Each constructor has a prototype member, through which the inheritance of javascript can be beautiful. In fact, this attribute alone cannot complete javascript inheritance. The
    2025-04-27
  • New way to play html5 - voice search

    New way to play html5 - voice search

    Google's website is Shibian Shixin. Today I discovered a new way to play HTML5 - voice search on their homepage. Unfortunately, only webkit core browsers can use it. The usage is very simple. Just add the attribute x-webkit-speech to input. The exampl
    2025-04-27
  • HTML elementary tutorial section

    HTML elementary tutorial section

    Now that your HTML document has a basic framework, you can "do it" for a while and other content:) Back to Notepad, add new lines as follows: Sample code [www.CuoXIn.com]
    2025-04-27
  • js get basic browser information

    js get basic browser information

    The visible area width of the web page: document.body.clientWidth The visible area height of the web page: document.body.clientHeight The visible area width of the web page: document.body.offsetWidth (including the width of the edge line) The visible area
    2025-04-27
  • Replace all characters except numbers and commas with js

    Replace all characters except numbers and commas with js

    Replace all characters except numbers and commas with js. The code is as follows:<script language="javascript"> var str="asdfk,asdf345345,345345"; //替换除数字与逗号以外的所有字符。str=str.r
    2025-04-27
  • How to display small icons in the browser title bar of HTML web page

    How to display small icons in the browser title bar of HTML web page

    Just like this effect, the method is also very simple, that is, write in the head:<link rel='icon' href='pic.ico ' type=‘image/x-ico ’ /> Remember that the icon is a file in .ico format, otherwise it will not be displayed.
    2025-04-27
  • Native JavaScript + LESS implements waterfall flow

    Native JavaScript + LESS implements waterfall flow

    HTML (note the wrapping relationship and facilitate js call) copy code as follows:<body><div id="main"><div><div><img src="images/0.jpg"></div></div><div><div>
    2025-04-27
  • New version of iOS6 Safari browser enhances HTML5 support

    New version of iOS6 Safari browser enhances HTML5 support

    Article introduction of Wulin.com (www.vevb.com): Safari's support for HTML5 in iOS 6. iOS6 has released a beta version, including the new version of Safari browser, which has enhanced support for HTML5. Let's learn more~~At present, safari is in
    2025-04-27
  • Showcase website features: large font web design style

    Showcase website features: large font web design style

    Wulin.com (www.vevb.com) Article introduction: Show website features: Web design style of large fonts. Original text: Large font design in web pages translated from: 55 Examples of Huge Typography in Web Design30 Examples of Big Ty
    2025-04-27
  • javascript rounding method summary

    javascript rounding method summary

    The rounded function toFixed(n) in native javascript, n is the number of decimal places to be retained. (0<= n <= 20) Copy the code as follows: var num=1.0999;console.log(num.toFixed(20)); http://
    2025-04-27
  • Instructions for using buffer.fill method in node.js

    Instructions for using buffer.fill method in node.js

    Method description: Fill the formulated data into the buffer. Syntax: The code copy is as follows: buffer.fill(value, [offset], [end]) Receive parameters: value The data to be filled off The start position of the filling data, and the default is 0end The
    2025-04-27
  • 2 solutions to using outerHTML in Firefox

    2 solutions to using outerHTML in Firefox

    I believe everyone is familiar with the innerHTML attribute of the DOM object, but externalHTML is less used. The innerHTML attribute returns the HTML contained in the DOM object from the start tag to the end tag, while the outerHTML attribute returns the
    2025-04-27
  • HTML5 support for default browsers in smartphones and tablets

    HTML5 support for default browsers in smartphones and tablets

    Wulin.com (www.vevb.com) article introduction: Mobile browser HTML5 compatibility list. This is a great one. It organizes the support of the default browsers in smartphones and tablets for new HTML5 and CSS3 technologies. Thank you @cnjoel for sharing on
    2025-04-27
  • Detailed explanation of the default parameters in Javascript

    Detailed explanation of the default parameters in Javascript

    Some languages ​​- like Ruby, CoffeeScript and the upcoming javascript version - can declare default parameters when defining a function, like this: Copy the code as follows: function myFunc(param1, param2 = "second
    2025-04-27
  • html5 photo function implementation code (htm5 upload file)

    html5 photo function implementation code (htm5 upload file)

    Comment: With the support of HTML5 specifications, it has become possible for WebApp to take photos on mobile phones. Below, I will explain how Web App takes photos with your mobile phone, displays it on the page and uploads it to the server 1. Video stre
    2025-04-27