- 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".
- PHP動態網站程序設計
- HTML5 移動Web開發從入門到精通(微課精編版)
- Linux環境編程:從應用到內核
- Learning JavaScript Data Structures and Algorithms
- Visual Basic程序設計上機實驗教程
- 現代C:概念剖析和編程實踐
- scikit-learn Cookbook(Second Edition)
- 分布式架構原理與實踐
- Modernizing Legacy Applications in PHP
- Python第三方庫開發應用實戰
- Beginning PHP
- Visual C#(學習筆記)
- C#程序設計基礎與實踐
- 深入理解C++11:C++11新特性解析與應用
- Go Programming Cookbook(Second Edition)