今天家人在mac OS 10.14的office 2016上做ppt , 遇到無法插入圖片或無法插入smart Art的問題。原來是office 2016 因為 MS16-070安全性問題,需要做一次升級更新。
中興大學友善連結:http://cc.nchu.edu.tw/content/docs/463
官方文件
https://support.microsoft.com/zh-tw/help/3165798/ms16-070-description-of-the-security-update-for-office-2016-for-mac-ju
大米的生活點滴
2018年12月17日 星期一
2018年7月19日 星期四
I'm back 前端工程師 mac安裝vue.js
歷經一段時間的迷茫,最近重新回歸網站領域。
做自己喜歡的是很重要
vue.js的安裝
- 打開終端機輸入:https://brew.sh/index_zh-tw
- 打開瀏覽器輸入:https://nodejs.org/en/,下載目前最新的安裝檔
- 在終端機輸入 :
sudo npm install -g vue-cli
2015年3月18日 星期三
what's different use angularJS with bootstrap's modal and only use bootstrap modal
- Only use bootstrap's show modal HTML tag structrue
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
- Use AngularJS and bootstrapUI show modal dialog's HTML tag structrue
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
兩者結構基本上沒有太大的差異,但是被劃掉上刪除線的那三行,在你是使用angularJS的ng-click觸發modal時絕對不要放上去;另外,如果發現黑色的遮罩消失請override class "modal-backdrop" to
.modal-backdrop {
bottom: 0;
position: fixed;
}
2014年6月2日 星期一
2014年6月1日 星期日
2014年5月31日 星期六
2014年5月28日 星期三
Change Eclipse UI Theme (改變Eclipse的UI風格)
訂閱:
文章 (Atom)