两个值和3D旋转效果(Two Values and 3D-Rotate Effect)
优质
小牛编辑
128浏览
2023-12-01
描述 (Description)
该拾取器与拾取器相同; 除了在此选择器中,您可以将其用于3D旋转效果。
例子 (Example)
以下示例演示了在Framework7中使用2 values and 3d-rotate 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>
输出 (Output)
让我们执行以下步骤,看看上面给出的代码是如何工作的 -
将上面给出的HTML代码保存为服务器根文件夹中的two_values_3D_effect.html文件。
以http://localhost/two_values_3D_effect.html打开此HTML文件,输出显示如下。
该示例允许您从列表中选取具有3D旋转效果的两个值。