參考現成js : https://gist.github.com/egermano/7451739
或直接把directive 放入自己的 module
.directive('align', function ($timeout) {
'use strict';
var linker = function (scope, element, attrs) {
var options = attrs['align'].split(" "),
listner = attrs['alignWatch'];
var positioner = function () {
angular.forEach(options, function (value, key) {
element.css('position', 'absolute');
switch (value) {
case 'top':
element.css({
top: '0',
marginTop: '0'
});
break;
case 'bottom':
element.css({
bottom: '0',
marginBottom: '0'
});
break;
case 'middle':
element.css({
top: '50%',
marginTop: ((element.height() / 2) * -1) + 'px'
});
break;
case 'right':
element.css({
right: '0',
marginRight: '0'
});
break;
case 'left':
element.css({
left: '0',
marginLeft: '0'
});
break;
case 'center':
element.css({
left: '50%',
marginLeft: ((element.width() / 2) * -1) + 'px'
});
break;
}
});
}
$(window).resize(function () {
positioner();
});
if (listner) {
scope.$watch(listner, function () {
positioner();
});
};
$timeout(function () {
positioner();
});
};
return {
restrict: 'A',
link: linker
};
})
訂閱:
張貼留言 (Atom)
vue3-simple-alert 學習心得
官網 顯示提示輸入訊息並於按下確定時檢查是否有輸入,防止未輸入就按確定,且和按取消用不同邏輯處理 VueSimpleAlert.fire({ title: '請輸入原因', input: 'text', showCancel...
-
1. 設定檔案下載儲存位置為 C:\Users\%username%\AppData\Local\Google\Chrome\User Data\Default\Cache 2. 勾選"下載每個檔案前詢問儲存位置" 3. 針對不要下載的檔案類型於第一...
-
自動設定欄寬 sheet.Cells.AutoFitColumns(3, 20); // 必須設定 min 跟 max 才會正常作用 凍結欄位 sheet.View.FreezePanes(4, 4); 標題列 ws.PrinterSettings.RepeatRo...
-
使用 FreeSpire.XLS ... ep.Save(); using (var workbook = new Workbook()) using (var memStream = new MemoryStream()) { workbook.LoadFromSt...
沒有留言:
張貼留言