温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何使用spin.js生成等待效果

发布时间:2021-06-29 11:22:56 来源:亿速云 阅读:170 作者:小新 栏目:web开发

这篇文章将为大家详细讲解有关如何使用spin.js生成等待效果,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

效果截图

如何使用spin.js生成等待效果

<%@ 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>

关于“如何使用spin.js生成等待效果”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI