实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
    <head>
4
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
        <title>CSS3红橙黄绿不同颜色按钮</title>       
6
        <link href="/api/jq/5733e31fc8fca/playground.css" media="all" rel="stylesheet" type="text/css" /> 
7
        <style type="text/css">
8
            /* Place all stylesheet code here */
9
            body { background: #333; text-shadow: 0 1px 1px rgba(0,0,0,.5); }
10
            @-webkit-keyframes bigAssButtonPulse {
11
                from { background-color: #749a02; -webkit-box-shadow: 0 0 25px #333; }
12
                50% { background-color: #91bd09; -webkit-box-shadow: 0 0 50px #91bd09; }
13
                to { background-color: #749a02; -webkit-box-shadow: 0 0 25px #333; }
14
            }
15
            @-webkit-keyframes greenPulse {
16
                from { background-color: #749a02; -webkit-box-shadow: 0 0 9px #333; }
17
                50% { background-color: #91bd09; -webkit-box-shadow: 0 0 18px #91bd09; }
18
                to { background-color: #749a02; -webkit-box-shadow: 0 0 9px #333; }
19
            }
20
            @-webkit-keyframes bluePulse {
21
                from { background-color: #007d9a; -webkit-box-shadow: 0 0 9px #333; }
22
                50% { background-color: #2daebf; -webkit-box-shadow: 0 0 18px #2daebf; }