


Introduction to Bootstrap
Bootstrap, from Twitter, is currently the most popular front-end framework. Bootstrap is based on HTML, CSS, and JAVASCRIPT. It is simple and flexible, making web development faster.
Thumbnail component
Thumbnails are most commonly used on product list pages on websites. They display several pictures in one row, and some have titles, descriptions, buttons and other information underneath the pictures.
Thebootstrap framework separates this part into a module component, which is implemented through the class name .thumbnail and the bootstrap grid system. The following are the source code files of different versions of the bootstrap thumbnail component:
LESS : tbumbnails.less
SASS : _tbumbnails.scss
Implementation principle:
The implementation of layout mainly relies on the grid system of the bootstrap framework. The following is the corresponding style of the thumbnail
.thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-right: auto; margin-left: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #428bca; } .thumbnail .caption { padding: 9px; color: #333; }
Let’s look at an example:
<div class="container"> <div class="row"> <div class="col-md-3"> <a herf="#" class="thumbnail"> <img src="/static/imghwm/default1.png" data-src="img/1.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> </div> <div class="col-md-3"> <a herf="#" class="thumbnail"> <img src="/static/imghwm/default1.png" data-src="img/2.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> </div> <div class="col-md-3"> <a herf="#" class="thumbnail"> <img src="/static/imghwm/default1.png" data-src="img/3.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> </div> <div class="col-md-3"> <a herf="#" class="thumbnail" > <img src="/static/imghwm/default1.png" data-src="img/4.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> </div> </div> </div>
The effect is as follows:
Can be viewed using Firefox responsive design view
On the basis of only thumbnails, add a div container with a class name of .caption, and place other content in this container, such as: title, text description, button, etc.
<div class="container"> <div class="row"> <div class="col-md-3"> <a href="#" class="thumbnail"> <img src="/static/imghwm/default1.png" data-src="img/1.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> <div class="caption"> <h3 id="这里是图文标题">这里是图文标题1111</h3> <p>这里是描述内容这里是描述内容这里是描述内容这里是描述内容这里是描述内容这里是描述内容这里是描述内容</p> <a href="#" class="btn btn-primary">开始学习</a> <a href="#" class="btn btn-info">正在学习</a> </div> </div> <div class="col-md-3"> <a href="#" class="thumbnail"> <img src="/static/imghwm/default1.png" data-src="img/2.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> <div class="caption"> <h3 id="这里是图文标题">这里是图文标题2222</h3> <p>这里是描述内容2222这里是描述内容22222这里是描述内容22222这里是描述内容222这里是描述内容2222</p> <a href="#" class="btn btn-primary">开始学习</a> <a href="#" class="btn btn-info">正在学习</a> </div> </div> <div class="col-md-3"> <a href="#" class="thumbnail"> <img src="/static/imghwm/default1.png" data-src="img/3.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> <div class="caption"> <h3 id="这里是图文标题">这里是图文标题3333</h3> <p>这里是描述内容3333这里是描述内容3333这里是描述内容33333这里是描述内容222这里是描述内容3333</p> <a href="#" class="btn btn-primary">开始学习</a> <a href="#" class="btn btn-info">正在学习</a> </div> </div> <div class="col-md-3"> <a href="#" class="thumbnail"> <img src="/static/imghwm/default1.png" data-src="img/4.jpg" class="lazy" style="max-width:90%" alt="A brief analysis of Bootstrap thumbnail components and alert box components_javascript skills" > </a> <div class="caption"> <h3 id="这里是图文标题">这里是图文标题4444</h3> <p>这里是描述内容4444这里是描述内容4444这里是描述内容4444这里是描述内容4444这里是描述内容4444</p> <a href="#" class="btn btn-primary">开始学习</a> <a href="#" class="btn btn-info">正在学习</a> </div> </div> </div> </div>
Alert box component
The bootstrap framework implements the alert box effect through the .alert style. By default, bootstrap provides four different alert box effects:
1. Success warning box: prompts the user that the operation is successful, and adds the .alert-success style on the basis of .alert;
2. Information warning box: Provide prompt information to the user, and add the .alert-info style on the basis of .alert;
3. Warning box: Provide warning information and add .alert-warning style on the basis of .alert;
4. Error warning box: prompts the user for operation errors, and adds the .alert-danger style on the basis of .alert;
Among them, the .alert style mainly sets the background color, border, rounded corners, and text color of the alert box. In addition, it also performs style processing on h4, p, ul, and .alert-link. The following is the css source code:
.alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; }
For example:
<div class="alert alert-success" role="alert">恭喜你操作成功!</div> <div class="alert alert-info" role="alert">请输入正确的密码</div> <div class="alert alert-warning" role="alert">你已经操作失败两次,还有最后一次机会</div> <div class="alert alert-danger" role="alert">对不起,你的密码输入有误!</div>
Closeable warning box
1. Add an .alert-dismissable class name to the default alert box container
2. Add .close to the button tag to implement the close button of the warning box
3. Make sure the custom attribute data-dismiss="alert" is set on the close button element (closing the alert box requires detecting this attribute through js to control the closing of the alert box)
Example:
<div class="alert alert-success alert-dismissable" role="alert"> <button class="close" type="button" data-dismiss="alert">×</button> 恭喜你操作成功! </div> <div class="alert alert-info alert-dismissable"role="alert"> <button class="close" type="button" data-dismiss="alert">×</button> 请输入正确的密码 </div> <div class="alert alert-warning alert-dismissable" role="alert"> <button class="close" type="button" data-dismiss="alert">×</button> 你已经操作失败两次,还有最后一次机会 </div> <div class="alert alert-danger alert-dismissable" role="alert"> <button class="close" type="button" data-dismiss="alert">×</button> 对不起,你的密码输入有误! </div>
Link to alert box
Sometimes it is necessary to add a link to the alert box to tell the user to jump to a new page. The links to the alert box are highlighted in the bootstrap framework. Add a class name of .alert-link to the link in the alert box. The following is the css style of alert-link
.alert .alert-link { font-weight: bold; } /*不同类型警示框中链接的文本颜色*/ .alert-success .alert-link { color: #2b542c; } .alert-info .alert-link { color: #245269; } .alert-warning .alert-link { color: #66512c; } .alert-danger .alert-link { color: #843534; }
Example:
<div class="alert alert-success " role="alert"> <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a> </div> <div class="alert alert-info" role="alert"> <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a> </div> <div class="alert alert-warning " role="alert"> <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a> </div> <div class="alert alert-danger" role="alert"> <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a> </div>
That’s all the relevant knowledge about the Bootstrap thumbnail component and alert box component introduced in this article. I hope it will be helpful to you!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
