Created
February 8, 2017 06:23
-
-
Save anonymous/72e822acae89f7c378a7266a512a2766 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/kiziri
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.js"></script> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.ng-modal-overlay { | |
/* A dark translucent div that covers the whole screen */ | |
position:absolute; | |
z-index:9999; | |
top:0; | |
left:0; | |
width:100%; | |
height:100%; | |
background-color:#000000; | |
opacity: 0.8; | |
} | |
.ng-modal-dialog { | |
/* A centered div above the overlay with a box shadow. */ | |
z-index:10000; | |
position: absolute; | |
width: 50%; /* Default */ | |
/* Center the dialog */ | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
-webkit-transform: translate(-50%, -50%); | |
-moz-transform: translate(-50%, -50%); | |
background-color: #fff; | |
box-shadow: 4px 4px 80px #000; | |
} | |
.ng-modal-dialog-content { | |
padding:10px; | |
text-align: left; | |
} | |
.ng-modal-close { | |
position: absolute; | |
top: 3px; | |
right: 5px; | |
padding: 5px; | |
cursor: pointer; | |
font-size: 120%; | |
display: inline-block; | |
font-weight: bold; | |
font-family: 'arial', 'sans-serif'; | |
} | |
</style> | |
</head> | |
<body ng-app='ModalDemo'> | |
<div ng-controller='MyCtrl'> | |
<button ng-click='toggleModal()'>Open Modal Dialog</button> | |
<modal-dialog show='modalShown' width='400px' height='60%'> | |
<p>Modal Content Goes here<p> | |
</modal-dialog> | |
</div> | |
<script id="jsbin-javascript"> | |
app = angular.module('ModalDemo', []); | |
app.directive('modalDialog', function() { | |
return { | |
restrict: 'E', | |
scope: { | |
show: '=' | |
}, | |
replace: true, // Replace with the template below | |
transclude: true, // we want to insert custom content inside the directive | |
link: function(scope, element, attrs) { | |
scope.dialogStyle = {}; | |
if (attrs.width) | |
scope.dialogStyle.width = attrs.width; | |
if (attrs.height) | |
scope.dialogStyle.height = attrs.height; | |
scope.hideModal = function() { | |
scope.show = false; | |
}; | |
}, | |
template: "<div class='ng-modal' ng-show='show'><div class='ng-modal-overlay' ng-click='hideModal()'></div><div class='ng-modal-dialog' ng-style='dialogStyle'><div class='ng-modal-close' ng-click='hideModal()'>X</div><div class='ng-modal-dialog-content' ng-transclude></div></div></div>" | |
}; | |
}); | |
app.controller('MyCtrl', ['$scope', function($scope) { | |
$scope.modalShown = false; | |
$scope.toggleModal = function() { | |
$scope.modalShown = !$scope.modalShown; | |
}; | |
}]); | |
</script> | |
<script id="jsbin-source-css" type="text/css">.ng-modal-overlay { | |
/* A dark translucent div that covers the whole screen */ | |
position:absolute; | |
z-index:9999; | |
top:0; | |
left:0; | |
width:100%; | |
height:100%; | |
background-color:#000000; | |
opacity: 0.8; | |
} | |
.ng-modal-dialog { | |
/* A centered div above the overlay with a box shadow. */ | |
z-index:10000; | |
position: absolute; | |
width: 50%; /* Default */ | |
/* Center the dialog */ | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
-webkit-transform: translate(-50%, -50%); | |
-moz-transform: translate(-50%, -50%); | |
background-color: #fff; | |
box-shadow: 4px 4px 80px #000; | |
} | |
.ng-modal-dialog-content { | |
padding:10px; | |
text-align: left; | |
} | |
.ng-modal-close { | |
position: absolute; | |
top: 3px; | |
right: 5px; | |
padding: 5px; | |
cursor: pointer; | |
font-size: 120%; | |
display: inline-block; | |
font-weight: bold; | |
font-family: 'arial', 'sans-serif'; | |
}</script> | |
<script id="jsbin-source-javascript" type="text/javascript">app = angular.module('ModalDemo', []); | |
app.directive('modalDialog', function() { | |
return { | |
restrict: 'E', | |
scope: { | |
show: '=' | |
}, | |
replace: true, // Replace with the template below | |
transclude: true, // we want to insert custom content inside the directive | |
link: function(scope, element, attrs) { | |
scope.dialogStyle = {}; | |
if (attrs.width) | |
scope.dialogStyle.width = attrs.width; | |
if (attrs.height) | |
scope.dialogStyle.height = attrs.height; | |
scope.hideModal = function() { | |
scope.show = false; | |
}; | |
}, | |
template: "<div class='ng-modal' ng-show='show'><div class='ng-modal-overlay' ng-click='hideModal()'></div><div class='ng-modal-dialog' ng-style='dialogStyle'><div class='ng-modal-close' ng-click='hideModal()'>X</div><div class='ng-modal-dialog-content' ng-transclude></div></div></div>" | |
}; | |
}); | |
app.controller('MyCtrl', ['$scope', function($scope) { | |
$scope.modalShown = false; | |
$scope.toggleModal = function() { | |
$scope.modalShown = !$scope.modalShown; | |
}; | |
}]);</script></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ng-modal-overlay { | |
/* A dark translucent div that covers the whole screen */ | |
position:absolute; | |
z-index:9999; | |
top:0; | |
left:0; | |
width:100%; | |
height:100%; | |
background-color:#000000; | |
opacity: 0.8; | |
} | |
.ng-modal-dialog { | |
/* A centered div above the overlay with a box shadow. */ | |
z-index:10000; | |
position: absolute; | |
width: 50%; /* Default */ | |
/* Center the dialog */ | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
-webkit-transform: translate(-50%, -50%); | |
-moz-transform: translate(-50%, -50%); | |
background-color: #fff; | |
box-shadow: 4px 4px 80px #000; | |
} | |
.ng-modal-dialog-content { | |
padding:10px; | |
text-align: left; | |
} | |
.ng-modal-close { | |
position: absolute; | |
top: 3px; | |
right: 5px; | |
padding: 5px; | |
cursor: pointer; | |
font-size: 120%; | |
display: inline-block; | |
font-weight: bold; | |
font-family: 'arial', 'sans-serif'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app = angular.module('ModalDemo', []); | |
app.directive('modalDialog', function() { | |
return { | |
restrict: 'E', | |
scope: { | |
show: '=' | |
}, | |
replace: true, // Replace with the template below | |
transclude: true, // we want to insert custom content inside the directive | |
link: function(scope, element, attrs) { | |
scope.dialogStyle = {}; | |
if (attrs.width) | |
scope.dialogStyle.width = attrs.width; | |
if (attrs.height) | |
scope.dialogStyle.height = attrs.height; | |
scope.hideModal = function() { | |
scope.show = false; | |
}; | |
}, | |
template: "<div class='ng-modal' ng-show='show'><div class='ng-modal-overlay' ng-click='hideModal()'></div><div class='ng-modal-dialog' ng-style='dialogStyle'><div class='ng-modal-close' ng-click='hideModal()'>X</div><div class='ng-modal-dialog-content' ng-transclude></div></div></div>" | |
}; | |
}); | |
app.controller('MyCtrl', ['$scope', function($scope) { | |
$scope.modalShown = false; | |
$scope.toggleModal = function() { | |
$scope.modalShown = !$scope.modalShown; | |
}; | |
}]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment