如何在离子2中添加水平滚轮选择器?

时间:2017-10-25 11:48:36

标签: html css angular ionic-framework selector

我正在开发一个ionic2项目,我需要使用水平滚轮选择数字design for wheel selector

但是我可以找到原生的东西。我尝试了 @ ionic-native / wheel selector ,但它没有这种方式工作,它打开一个模态类型来选择数字。 我尝试使用一些标签制作自己的定制滚轮

    protected override Task HandleRequirementAsync(AuthorizationHandlerContext context, IsCustomerUserRequirement requirement)
    {
        if (context.User.HasClaim(_ => _.Type == Claims.Customer) ||
            context.User.IsInRole(Roles.SuperUser))
        {
            context.Succeed(requirement);
        }

        return Task.CompletedTask;
    }

它看起来与所需的相同,并且scoll水平,但不能选择和放大中间值

enter image description here

请展示一些实现此目标的解决方案?

0 个答案:

没有答案