Fork me on GitHub

OmniGraffle导入stencils的两个方法以及优质的stencils下载网站推荐

今天写论文,需要画几个电路结构图,可是现在是WannaCry勒索病毒正肆虐的时候,不想用教研室的win7啊!(其实只是想搞清楚mac下到底有没有visio那样好用的可以导入很多模版的画流程图结构图等的利器。。。)

之前就用过OmniGraffle了,但是也就只是画了几个流程图。今天经过一番”人肉搜索“后,发现居然有一些画电路结构的元件stencils可以下载!太高兴了有没有!不仅下了自己需要的Circuiteria.gstencil, electronics. gstencil,还下载了好多其他精美的stencils~~抑制不住激动的心情,好想赶紧把这些stencils导入OmniGraffle,以后就可以直接用啦!

可是,,,一开始怎么都没找到OmniGraffle安装文件下的Stencils文件夹。最后干脆直接打开一个下载的stencil,弹出了这个对话框:

哈哈,可以这样一个一个导入了,但是这样还是比较慢的。还有什么别的方法吗?

一番摸索之后,还真让我给找到了!就是在OmniGraffle里打开自带的模版,比如基本>形状,点右上角小齿轮,选“在Finder中显示”

就能知道OmniGraffle自带的stencils是放在哪里啦

然后按图中红线位置就能找到Stencils文件夹啦!一次性将下载的stencils拖入OmniGraffle Stencils文件夹。再打开OmniGraffle的时候,就能在模版库里看到自己的模版啦

完美!!

 

最后,再推荐两个下载Stencils的网站:

https://stenciltown.omnigroup.com

https://www.graffletopia.com

 

posted on 2017-05-16 15:11  馬小妹  阅读(11331)  评论(1编辑  收藏  举报

/* * 功能: 创建一个可以让页面滚动到顶部的按钮, 常见于各种社交网站的微博列表. * 备注: DOM被设置成了浮动的, 用户可以自己设定位置, 传入right, bottom参数即可 还可以配置滚到条到多高的时候会显示插件图标. */ (function ($) { $.fn.scrolltop = function (options) { var opts = $.extend({}, $.fn.scrolltop.defaults, options); var run2top = function () { var scrollDist = $(window).scrollTop(); if (scrollDist > 0) { scrollDist -= opts.topSpeed; scrollDist = Math.max(scrollDist, 0); $(window).scrollTop(scrollDist); setTimeout(run2top, 1); } }; return this.each(function () { var $this = $(this); $this.css("opacity", "0.3"); $this.css("background", "url('u=4251301862,936291425&fm=214&gp=0.jpg') no-repeat"); $this.css("width", opts.width); $this.css("height", opts.height); $this.css("position", "fixed"); $this.css("right", opts.right); $this.css("bottom", opts.bottom); $this.hover( function () { $(this).css('opacity', '1.0'); }, function () { $(this).css('opacity', '0.5'); } ); $this.click(function () { //$(window).scrollTop(0); run2top(); }); $(window).scroll(function () { var scrollDist = $(window).scrollTop(); if (scrollDist >= opts.heightThreshhold) { //当滚动条离顶部超过阈值的时候, 就显示 $this.css("display", "block"); } else { $this.css("display", "none"); } }); }); }; $.fn.scrolltop.defaults = { heightThreshhold: 1000, width: "50px", height: "50px", right: "8%", bottom: "30px", topSpeed: 50 }; })(jQuery);