bootstrapでバックグラウンドを回転可能なログインインタフェースを作成する


bootstrapでログイン登録ページを作成する
効果図(2 Mの制限効果図の大きさが一致しないため)
htmlコードが水平中央にあるbootstrapのグリッドシステムを利用してoffset-3を右に3グリッド移動する.(グリッドシステムのデフォルト12グリッド)

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>logintitle>

    <script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js">script>
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
    <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js">script>
    <link rel="stylesheet" href="css/style.css">



head>
<body>
    <div class="container">
        <div class="form row">
            <div class="form-horizontal col-md-offset-3" id="login_form">
                <h3 class="form-title">LOGINh3>
                <div class="col-md-9">
                    <div class="form-group">
                        <i class="fa fa-user fa-lg">i>
                        <input class="form-control required" type="text" placeholder="Username" id="username" name="username" autofocus="autofocus" maxlength="20"/>
                    div>
                    <div class="form-group">
                            <i class="fa fa-lock fa-lg">i>
                            <input class="form-control required" type="password" placeholder="Password" id="password" name="password" maxlength="8"/>
                    div>
                    <div class="form-group">
                        <label class="checkbox">
                            <input type="checkbox" name="remember" value="1"/>   
                        label>
                    div>
                    <div class="form-group col-md-offset-9">
                        <button type="submit" class="btn btn-success pull-right" name="submit">  button>
                    div>
                div>
            div>
        div>
    div>
body>
html>

css部分はcss 3のアニメーションの@keyframesルールで、回転図を作成します.
body{
    background: url("../img/1.jpg");
    animation-name:myfirst;
    animation-duration:12s;
    /*    */
    animation-delay:2s;
    /*      */
    animation-iteration-count:infinite;
    /*        */
    animation-play-state:running;
    /*      */
}
@keyframes myfirst
{
    0%   {background:url("../img/1.jpg");}
    34%  {background:url("../img/2.jpg");}
    67%  {background:url("../img/3.jpg");}
    100% {background:url("../img/1.jpg");}
}
.form{background: rgba(255,255,255,0.2);width:400px;margin:120px auto;}
/*  */
.fa{display: inline-block;top: 27px;left: 6px;position: relative;color: #ccc;}
input[type="text"],input[type="password"]{padding-left:26px;}
.checkbox{padding-left:21px;}