- Mastering jQuery UI
- Vijay Joshi
- 239字
- 2021-07-23 20:33:34
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We have created a div with CSS class container
which will act as parent div for all the page elements"
A block of code is set as follows:
var t = this; $( ".slider" ).slider( { range: "min", max: 255, slide : function (event, ui) { t.setColor($(this), ui.value); }, change : function (event, ui) { t.setColor($(this), ui.value); } });
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
var t = this;
$(".slider").slider(
{
range: "min",
max: 255,
slide : function (event, ui)
{
t.setColor($(this), ui.value);
},
change : function (event, ui)
{
t.setColor($(this), ui.value);
}
});
Any command-line input or output is written as follows:
# cp /usr/src/asterisk-addons/configs/cdr_mysql.conf.sample /etc/asterisk/cdr_mysql.conf
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking the Next button moves you to the next screen".
- Python數據分析基礎
- DevOps Automation Cookbook
- Learning ArcGIS Pro
- Ext JS 4 Web Application Development Cookbook
- bbPress Complete
- INSTANT Adobe Edge Inspect Starter
- Serverless Web Applications with React and Firebase
- UX Design for Mobile
- Learning Kotlin by building Android Applications
- Functional Python Programming
- 你真的會寫代碼嗎
- JSP應用與開發技術(第3版)
- Distributed Computing with Python
- Hadoop MapReduce v2 Cookbook(Second Edition)
- Clojure High Performance Programming