博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cancel-ng-swipe-right-on-child
阅读量:5099 次
发布时间:2019-06-13

本文共 2100 字,大约阅读时间需要 7 分钟。

一个页面存在多个swipe时,互不影响cancel-ng-swipe-right-on-child

Angular Swipe Menu

 

*{
margin: 0; padding: 0; border: none;}html, body, #page{
height: 100%; min-height: 100%;}.box{
background-color: #EFEFEF; box-shadow: 0 1px 2px #dedede; border: 1px solid #ddd; border-radius: 4px;}.menu{
float: right; min-height:100%; width: 98%;}.menu_item{
line-height:2;}.menu_link{
display:block; padding-left:1em;}.menu_link:hover{
background: #DEDEDE;}.menu-grip{
float:right; height:5em; line-height:.5; padding-top:2em; text-align:center; width:1em;}h1{
background:black; color:white; font-size:1.1em; line-height:1.3;}.big-swiper{
font-size: 5em; height:3em; line-height:3; margin:.5em auto; text-align:center; width:4em;}.big-swiper:before{
content:'<\a0'; color:#dedede; font-weight:700;}.big-swiper:after{
content:'\a0>'; color:#dedede; font-weight:700;}

 

var app = angular.module('myapp', ['ngTouch']);app.controller('MyCtrl', function MyCtrl($scope) {    $scope.stopActions = function (event) {        if (event.stopPropagation) {            event.stopPropagation();        }        // if (event.preventDefault) {
// event.preventDefault(); // } // event.cancelBubble = true; // event.returnValue = false; }; // Carousel thing $scope.index = 0; // Hide menu $scope.showMenu = false; // Links $scope.navigation = [{ title: "Page A", href: "#pageA" }, { title: "Page B", href: "#pageB" }, { title: "Page C", href: "#pageC" }]; // Increment carousel thing $scope.next = function () { //stopActions($event); $scope.index++; }; // Decrement carousel thing $scope.prev = function () { //stopActions($event); $scope.index--; };});

转载请备注。

转载于:https://www.cnblogs.com/brittany/p/4835978.html

你可能感兴趣的文章
差分约束
查看>>
UINavigationCountroller pop到指定界面
查看>>
NoSQL相关数据库
查看>>
安卓扁平化之路专题(四)Material Design
查看>>
案例:音乐列表
查看>>
npm
查看>>
vue-cli安装
查看>>
渐进增强和优雅降级
查看>>
Html和Css学习笔记-css基础知识
查看>>
bzoj1797: [Ahoi2009]Mincut 最小割(网络流,缩点)
查看>>
jq选择器
查看>>
[TJOI2017] 可乐
查看>>
Java I/O流典型使用案例
查看>>
Web服务器性能/压力测试工具http_load、webbench、ab、Siege、loadrunner
查看>>
第一次随笔作业
查看>>
Percona-Server-5.5.15源码安装
查看>>
比AtomicLong还高效的LongAdder 源码解析
查看>>
TCP报文中的SYN,FIN,ACK,PSH,RST,URG
查看>>
博客园第一天
查看>>
java反射机制
查看>>