运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .buttonload { background-color: #04AA6D; /* Green background */ border: none; /* Remove borders */ color: white; /* White text */ padding: 12px 24px; /* Some padding */ font-size: 16px; /* Set a font-size */ } /* Add a right margin to each icon */ .fa { margin-left: -12px; margin-right: 8px; } </style> </head> <body> <h2>Loading Buttons</h2> <button class="buttonload"> <i class="fa fa-spinner fa-spin"></i>Loading </button> <button class="buttonload"> <i class="fa fa-circle-o-notch fa-spin"></i>Loading </button> <button class="buttonload"> <i class="fa fa-refresh fa-spin"></i>Loading </button> </body> </html>