Framework7-two-values-3D-effect

提供:Dev Guides
移動先:案内検索

Framework7-2つの値と3D回転効果

説明

このピッカーはピッカーと同じです。ただし、このピッカーでは、3D回転効果に使用できます。

次の例は、Framework7での_2値と3d回転effect_の使用を示しています-

<!DOCTYPE html>
<html>

   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1,
         maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui"/>
      <meta name = "apple-mobile-web-app-capable" content = "yes"/>
      <meta name = "apple-mobile-web-app-status-bar-style" content = "black"/>
      <title>2 values and 3d-rotate effect</title>
      <link rel = "stylesheet"
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css"/>
      <link rel = "stylesheet"
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css"/>
   </head>

   <body>
      <div class = "views">
         <div class = "view view-main">
            <div class = "pages">
               <div data-page = "home" class = "page navbar-fixed">

                  <div class = "navbar">
                     <div class = "navbar-inner">
                        <div class = "left"> </div>
                        <div class = "center">Picker</div>
                        <div class = "right"> </div>
                     </div>
                  </div>

                  <div class = "page-content">
                     <div class = "content-block-title">2 values and 3d-rotate effect</div>
                     <div class = "list-block">
                        <ul>
                           <li>
                              <div class = "item-content">
                                 <div class = "item-inner">
                                    <div class = "item-input">
                                       <input type = "text" placeholder = "Describe yourself"
                                          readonly id = "picker-describe"/>
                                    </div>
                                 </div>
                              </div>
                           </li>
                        </ul>
                     </div>
                  </div>

               </div>
            </div>
         </div>
      </div>

      <script type = "text/javascript"
         src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>

      <style>
         .swiper-slide {
            background:#fff;
            box-sizing:border-box;
            border:1px solid #ccc;
            line-height:120px;
            text-align:center;
         }

         .swiper-slide span {
            font-size:17px;
         }

         .swiper-container {
            height:120px;
            margin:0px 0 35px;
         }

      </style>

      <style>
         #picker-date-container .picker-item {
            color:#999;


         #picker-date-container .picker-selected {
            color:#000;
         }

         @media (max-width: 767px) {
            #picker-date-container .picker-items {
               font-size:21px;
            }

            #picker-date-container .picker-item {
               height:36px;
               line-height:36px;
               padding:0 6px;
            }
         }
      </style>

      <script>
         var myApp = new Framework7();

         var pickerDescribe = myApp.picker ({
            input: '#picker-describe',
            rotateEffect: true,
            cols: [
               {
                  textAlign: 'left',
                  values: ('Super Lex Amazing Bat Iron Rocket Lex Cool Beautiful Wonderful Raining Happy Amazing Funny Cool Hot').split(' ')
               },

               {
                  values: ('Man Luthor Woman Boy Girl Person Cutie Babe Raccoon').split(' ')
               },
            ]
         });
      </script>
   </body>

</html>

出力

上記のコードがどのように機能するかを確認するために次の手順を実行してみましょう-

  • 上記のHTMLコードを two_values_3D_effectl ファイルとしてサーバーのルートフォルダーに保存します。
  • このHTMLファイルをhttp://localhost/two_values_3D_effectlとして開くと、出力は以下のように表示されます。
  • この例では、3D回転効果を使用してリストから2つの値を選択できます。