Home > Article > Web Front-end > Summary of points to note about CSS+Js
Prohibiting selected text is still necessary in some scenarios, such as if you don’t want others to copy your articles. At this time we can solve this problem by using CSS+JS. In addition, it should be pointed out here that user-select is not yet an official W3C standard, and each browser provides support in the form of private attributes. Syntax Formal syntax: none | text | all | element code is as follows: (-prefix-)user-select: none; (-prefix-)user-select: text; (-prefix-)user-select: all; (-prefix-)user-select: element;The code is as follows:.row-of-icons { -webkit-user-select:
1. Code example of prohibiting selected text through CSS rules
Introduction: Prohibiting selected text through CSS rules is still necessary in certain scenarios, such as not wanting others to copy your articles. At this time we can solve this problem by using CSS+JS. In addition, it should be pointed out here that user-select is not yet an official W3C standard, and each browser provides support in the form of private attributes.
2. CSS+JS to create a progress bar with gradient
##Introduction: A web page progress bar that runs on CSS to beautify the progress bar into a gradient color. Tongjin uses JavaScript to control CSS to tile the background of the progress bar in a timely manner. The demo program only demonstrates the style of the progress bar. Application The web page still needs to be modified.
3. atom How to set up ftp automatic upload
Introduction: How to set up atom How to set up ftp automatic upload? ! I have been researching for a long time and downloaded the remote ftp package~~and then I was stunned... {code...} How to set which folder on the ftp will be transferred to if any of the files in my folder are saved? And the setting of Package preferences...
4. Learn to use pure CSS to create a collapsible tree menu
##Introduction: With the release of CSS3, foreign research is in full swing, but there are still many people in China who hold the idea that IE does not support CSS3, and remain indifferent and refuse to learn. . But history tells us that good things will prevail, and CSS3 will eventually replace CSS2. Let’s share with you a collapsible tree menu created with CSS3. I believe everyone is familiar with the tree menu. We usually use css+JS to implement it. The arrival of CSS3 allows us to get rid of the constraints of JS and directly use the "selector" of CSS3 to realize a collapsible tree menu. There is a lot of overall code, so I won’t go into it sentence by sentence. I’ll just mention what I think is important.
5.
javascript - A number is incremented by 1 every second and printed out until it reaches 50. How to implement this using js?
Introduction: As in the question, how to solve the problem of using closures and the setTimeout function? PHP implementation is also welcome6.
html+css+js to implement full selection and inverse selection of check boxes
Introduction: html+css+js implements full selection and inverse selection of check boxes7.
Div+CSS+JS tree menu_html/css_WEB-ITnose
Introduction: Div+CSS+JS tree menu8.
div+css+js folding menu_html/css_WEB- ITnose
Introduction: div+css+js folding menu9.
Div+CSS+JS navigation menu_ html/css_WEB-ITnose
Introduction: Div+CSS+JS navigation menu10.
Div+Css+ JS makes pop-up window_html/css_WEB-ITnose Introduction: Div+Css+JS to make a pop-up window [Related Q&A recommendations]: javascript - Stand-alone environment, three hours to build a set of simple pages
The above is the detailed content of Summary of points to note about CSS+Js. For more information, please follow other related articles on the PHP Chinese website!