1, to improve the current efficiency of the thinking:
- First, it's important to improve your skill level (and of course the team's skills are more important)
- Clearly know the project time plan and integrate with your own time planning
- ......
2, about the current slicing method of finishing :
- Analyze the design draft, form the general slice idea
- Build HTML framework, CSS style sheet
- Add JS (the first SVN can be submitted at the time of progress, and the adjustment details will be modified incrementally)
- Test your browser
- Summarize the blog, organize common code snippets
- Learn to summarize the remaining problem knowledge points
Tip: Record slices in process encounter all problems
3, on the acceptance of the design draft of the standard examination (aim to improve the efficiency of sectioning)
- Unified file naming
- The file is too large to run on its own machine
- The division and naming unification of the file content layer
Knowledge Points:
1 "CSS" some details
- When dealing with the page local follow-up, a uniform percentage of the left and right margins is used to fit different resolutions.
- IE Transparent: filter:alpha (OPACITY:60);
- Input{outline:none;} Let GG browser Save consistency
2 "JS"setTimeout () and setinterval () usage
3 "JS" gets the position of the scroll bar
DOCUMENT.BODY.SCROLLTOP (GG support) with DOCUMENT.DOCUMENTELEMENT.SCROLLTOP (FF support)
4 "JQ" return to the top and follow the JQ implementation mode
5 "CSS" a kind of thinking realization
Causes the child elements of the parent element to float, using the margin style of the child element to press the border of the parent element (IE7 display, cannot hold the lower border)
6 "HTML" IE7 bug
The level of the IMG tag is higher than the level of the elements behind the flow layout and is resolved by using relative positioning (position:relative) for subsequent elements.
150111-Slice summary (to learn ... )