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
  • Watching Fire from the Other Side Explains Flash and HTML5 for You

    Watching Fire from the Other Side Explains Flash and HTML5 for You

    HTML5 does not only refer to HTML5 itself, but generally refers to the entire web front-end technology included in HTML5, CSS3, JavaScript and new browser APIs.
    2025-01-21
  • This is how to write CSS code

    This is how to write CSS code

    /*What I am using now is modified based on the version shared by Dan's, simplified and formatted*/ /*In fact, this is not the simplest template.
    2025-01-21
  • How to call Flash to comply with Web page standards?

    How to call Flash to comply with Web page standards?

    Netizens often ask how to make Flash tags embedded in web pages comply with web standards. There is currently no perfect solution. In this article, we write Flash embedded tags into js files and pass parameters through variables to avoid tags that do not
    2025-01-21
  • Refuting Steve Jobs’ anti-Flash remarks

    Refuting Steve Jobs’ anti-Flash remarks

    As soon as Jobs's anti-Flash remarks were issued, they immediately stirred up waves. Overall, some of his statements are reasonable, but some of them are questionable. Apple has made several brave moves in its history, such as abandoning parallel and
    2025-01-21
  • Example of initial value of Boolean object in js

    Example of initial value of Boolean object in js

    Boolean (logical) objects are used to convert non-logical values ​​into logical values ​​(true or false). Creating a Boolean Object Use the keyword new to define a Boolean object. The following code defines a logical object named myBoolean: var myBo
    2025-01-21
  • Detailed explanation of block elements and inline elements in CSS

    Detailed explanation of block elements and inline elements in CSS

    A block element is generally a container element for other elements. Block elements generally start on a new line. It can accommodate inline elements and other block elements. A common block element is the paragraph tag 'P'. The block element &quo
    2025-01-21
  • Simple example of tree drag function in Extjs4 (can be dragged between two trees)

    Simple example of tree drag function in Extjs4 (can be dragged between two trees)

    Copy the code as follows: // Just configure the viewConfig in the treepanel. If it is between two trees, both trees must configure viewConfig:{plugins:{ptype:'treeviewdragdrop',appendOnly:tru
    2025-01-21
  • JS input box mailbox automatic prompt function code implementation

    JS input box mailbox automatic prompt function code implementation

    In the same way, this plug-in does not require any html tags. It only needs an input box with a corresponding class name and the parent has a class name. Nothing else is needed. The internal HTML code is automatically generated. The HTML code is as follow
    2025-01-21
  • Pagination application in Extjs4 combines front and backend

    Pagination application in Extjs4 combines front and backend

    Front-end part: Copy the code as follows: Ext.define('GS.system.role.store.RoleGridStore',{ extend:'Ext.data.Store', model:'GS.system.role.model.R
    2025-01-20
  • HTML Optimization Miscellaneous Notes

    HTML Optimization Miscellaneous Notes

    The most basic part of web page optimization should be HTML optimization. Specifically, the first is markup cleaning. Cleaning markup can not only reduce the size of the document, but also make the document easier to maintain and improve the visibility of
    2025-01-20
  • Concise and clear DIV CSS web page layout development reference specification

    Concise and clear DIV CSS web page layout development reference specification

    CSS web page layout can also be regarded as a systematic work. The development of DIVCSS website may be completed by multiple people in collaboration and by a team. This involves many normative operation issues. Even if it is developed by one person, a ce
    2025-01-20
  • Detailed explanation of three ways to achieve the function of smoothly scrolling the page to the top

    Detailed explanation of three ways to achieve the function of smoothly scrolling the page to the top

    Background Recently, the development company's public account H5 has a function of clicking the icon to scroll to the top. The function is relatively simple to implement. Just call window.scrollTo(0, 0) directly and complete it in one line of code. Bu
    2025-01-20
  • Use css to achieve perspective effect

    Use css to achieve perspective effect

    Use css to achieve perspective effect. At first, I thought of our common method of adding shadow effects, which is achieved by using multiple divs through offset, but this requires many divs, which is not ideal. Then, I thought of a property of CSS: borde
    2025-01-20
  • A sense of hierarchy in page design

    A sense of hierarchy in page design

    The design needs to have a sense of layering, which may be of many types, such as the layering of colors or the layering of elements. When a design lacks a sense of hierarchy, the page will show only two possibilities, one is monotonous, and the other is
    2025-01-20
  • Quick solution to js is empty or not an object problem

    Quick solution to js is empty or not an object problem

    1. Added a parameter <script language="javascript" defer="defer">2. 'null'为空或不是对象:<script type="text/javascript"> 里面加个defer=true属性试试看,
    2025-01-20