个性化阅读
专注于IT技术分析

两个值和3D旋转效果

该选择器用于获得3D旋转效果。

<!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>

立即测试

赞(0)
未经允许不得转载:srcmini » 两个值和3D旋转效果

评论 抢沙发

评论前必须登录!