利用 spin.js 生成等待效果(js 等待效果)
利用 js 生成一個界面友好的等待效果,使用 jquery 插件 spin.js,文章末尾有下載地址,下圖是生成的效果截圖,代碼調(diào)用很簡單。

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
body {
font-family: Helvetica, Arial, sans-serif; font-size: 12px;
}
#preview1 {
float: left; position: relative; background-color: #000; color: black; width: 220px; height: 220px; margin: 0 5px; border-radius: 20px;
}
#preview2 {
float: left; position: relative; background-color: #000; color: black; width: 220px; height: 220px; margin: 0 5px; border-radius: 20px;
}
</style>
<script src="jquery.min.js"></script>
<script src="spin.js"></script>
<script src="jquery.spin.js"></script>
<script type="text/javascript">
// 對樣式 #preview1 進行配置
var opts1 =
{
lines : 12, // The number of lines to draw
length : 0, // The length of each line
width : 11, // The line thickness
radius : 40, // The radius of the inner circle
scale : 1.0, // Scales overall size of the spinner
corners : 0, // Roundness (0..1)
color : '#efefef', // #rgb or #rrggbb
opacity : 1 / 4, // Opacity of the lines
rotate : 0, // Rotation offset
direction : 1, // 1: clockwise, -1: counterclockwise
speed : 1, // Rounds per second
trail : 100, // Afterglow percentage
fps : 20, // Frames per second when using setTimeout()
zIndex : 2e9, // Use a high z-index by default
className : 'spinner', // CSS class to assign to the element
top : '50%', // center vertically
left : '50%', // center horizontally
shadow : false, // Whether to render a shadow
hwaccel : false, // Whether to use hardware acceleration (might be buggy)
position : 'absolute' // Element positioning
};
// 對樣式 #preview2 進行配置
var opts2 =
{
lines : 18, // The number of lines to draw
length : 0, // The length of each line
width : 11, // The line thickness
radius : 40, // The radius of the inner circle
scale : 1.0, // Scales overall size of the spinner
corners : 0, // Roundness (0..1)
color : 'red', // #rgb or #rrggbb
opacity : 1 / 4, // Opacity of the lines
rotate : 0, // Rotation offset
direction : 1, // 1: clockwise, -1: counterclockwise
speed : 1, // Rounds per second
trail : 100, // Afterglow percentage
fps : 20, // Frames per second when using setTimeout()
zIndex : 2e9, // Use a high z-index by default
className : 'spinner', // CSS class to assign to the element
top : '50%', // center vertically
left : '50%', // center horizontally
shadow : false, // Whether to render a shadow
hwaccel : false, // Whether to use hardware acceleration (might be buggy)
position : 'absolute' // Element positioning
};
</script>
<title>Insert title here</title>
</head>
<body>
<div id="preview1" class="preview"></div>
<div id="preview2" class="preview"></div>
</body>
<script type="text/javascript">
$('#preview1').spin(opts1);
$('#preview2').spin(opts2);
</script>
</html>
插件下載地址
https://github.com/fgnass/spin.js/
以上所述是小編給大家介紹的利用 spin.js 生成等待效果(js 等待效果),希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復(fù)大家的!
相關(guān)文章
Javascript動態(tài)創(chuàng)建表格及刪除行列的方法
這篇文章主要介紹了Javascript動態(tài)創(chuàng)建表格及刪除行列的方法,涉及javascript動態(tài)操作表格的相關(guān)技巧,需要的朋友可以參考下2015-05-05
webpack3升級到webpack4遇到問題總結(jié)
這篇文章主要介紹了webpack3升級到webpack4遇到問題總結(jié),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-09-09
ECharts實現(xiàn)數(shù)據(jù)超出Y軸最大值max但不隱藏
這篇文章主要為大家介紹了ECharts實現(xiàn)數(shù)據(jù)超出Y軸最大值max但不隱藏實現(xiàn)示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-10-10
JS實現(xiàn)網(wǎng)頁上隨滾動條滾動的層效果代碼
這篇文章主要介紹了JS實現(xiàn)網(wǎng)頁上隨滾動條滾動的層效果代碼,涉及JavaScript頁面元素屬性的獲取、運算及設(shè)置等操作技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-11-11
Javascript將string類型轉(zhuǎn)換int類型
今天網(wǎng)站有個小功能要判斷用戶購買商品數(shù)量是否大于庫存數(shù)據(jù),如果大于庫存數(shù)量,就給予提示。2010-12-12

