- 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".
- 深入核心的敏捷開發:ThoughtWorks五大關鍵實踐
- Unreal Engine Physics Essentials
- Flutter開發實戰詳解
- Python機器學習:數據分析與評分卡建模(微課版)
- 圖解Java數據結構與算法(微課視頻版)
- Access 2010數據庫基礎與應用項目式教程(第3版)
- MongoDB權威指南(第3版)
- Mastering JBoss Enterprise Application Platform 7
- Learning Python Design Patterns
- Learning Unity 2D Game Development by Example
- Android系統級深入開發
- Learning YARN
- 寫給程序員的Python教程
- 小程序從0到1:微信全棧工程師一本通
- Mastering jQuery Mobile