http://www.moxiemanager.com/getit/ : picture file manage with blur javascript
能夠和Tinymce結合使用完美實現WYSIWYG的效果php
http://blurjs.com/ :支持背景或其餘element的糊化效果css
image的crop,blur操做通常是由前端的js/html/css來實現所見即所得,隨後將參數傳給相似php的Image庫函數在後端操做,而且最終保存。若是隻想對其中選擇的部分來作模糊化效果應用,則能夠先copy一個新的image,隨後對這個image來執行imagecopy,imagefilter,隨後將結果再copy回去便可。html
$image2 = imagecreate($width, $height); imagecopy ( $image2 , $image , 0 , 0 , $x , $y , $width , $height); imagefilter($image, IMG_FILTER_GAUSSIAN_BLUR); imagecopy ($image, $image2, $x, $y, 0, 0, $width, $height);
http://youzign.com/special/ : 在線graphic design software,great resource for designer前端
http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/ 數學表達式計算機圖片展現的理論基礎vue
https://www.mathjax.org/ 以svg, html5的方式來展現數學表達式,很好用,已經捐贈5usdhtml5
http://jsbin.com/yadapavabe/2/ 本身編寫的簡單的wrap mathjax的應用java
http://manuels.github.io/texlive.js/ latex的javascript實現,能夠以browser編譯運行的方式生成包含複雜數學表達式的pdf文件node
https://khan.github.io/KaTeX/: 自包含無依賴的Tex轉換js庫,好用python
http://dmitrybaranovskiy.github.io/raphael/ : 矢量圖js繪製工具庫
https://www.khanacademy.org : 志願者education
WYSIWYG editors stands for 「What You See Is What You Get」, 好比tinymce,codemirror等工具
https://github.com/fraywing/textAngular/ 一個angular directive Wysiwyg style 前端編輯器,能夠用於定製化開發,增長數學表達式建立工具欄
http://www.codecogs.com/latex/eqneditor.php 使用latex的語法而支持所見即所得的編輯方式的WYSIWYG javascript 庫
http://mathscribe.com/author/jqmath.html put math on the web, lightweight javascript lib for translating latex into html/css
http://lyx.org 提供一個很是方便編輯填寫math表達式的桌面應用程序,最終能夠導出latex格式或者html格式的文檔,或許這是一個可行的math content creation的方法
http://mathdox.org/formulaeditor/ 一個所見所得的math equotion editor
http://mathquill.com/ WYSIWYG math with only HTML, CSS and JS 或許是mathjax的一個替代品,這個產品自己尺寸小,速度快,結合desmos.com能夠很是有創意的使用math。 Magic textboxes where you can type math as easily as writing!
http://mathscribe.com/author/jqmath.html jqmath是mathjax的一個替代品,尺寸較小,速度快
幾個幾何geometry實用creative資源:
http://www.mathillustrations.com/ 桌面應用,有成型的圖片下載;
幾個online code editor:
https://codeanywhere.com 比較好用的codeIDE
https://codio.com :能夠用於學校教學
http://www.geometryexpressions.com/apps.php 能夠生成頗有創意的幾何圖形app,有動態特效效果,很不錯
http://geogebra.org 也是一個在線建立幾何圖形的工具
http://livegeometry.com/ 在線幾何圖形工具
https://coderdojo.com KIDS IT study志願組織
幾個經常使用的laravel package:
https://github.com/FbF/Laravel-Blog blog package
http://image.intervention.io/ PHP image handling package
https://github.com/lucadegasperi/oauth2-server-laravel 適用於laravel5的oauth2認證支持package
Git 客戶端:http://www.syntevo.com/smartgit download.tortoisegit.org
http://dropzonejs.com/: 拖拽批量上傳文件js庫
//Animated header positioning var $head = $( '.header-fixed' ); $( '.waypoint' ).each( function(i) { var $el = $( this ), animClassDown = $el.data( 'animateDown' ), animClassUp = $el.data( 'animateUp' ); $el.waypoint( function( direction ) { if( direction === 'down' && animClassDown) { $head.attr('class', 'header-fixed ' + animClassDown); } else if( direction === 'up' && animClassUp){ $head.attr('class', 'header-fixed ' + animClassUp); } }, { offset: -250 }); });
結合inview addon的代碼以下:
Javascript:
var inview = new Waypoint.Inview({ element: $('.my-animated-row')[0], enter: function(direction) { $('.list.start-1').addClass('fadeInUp'); $('.image-container.start-2').addClass('fadeInUp stage2'); $('.list.start-3').addClass('fadeInUp stage3'); }, entered: function(direction) { notify('Entered triggered with direction ' + direction) }, exit: function(direction) { notify('Exit triggered with direction ' + direction) }, exited: function(direction) { notify('Exited triggered with direction ' + direction) }
HTML:
<div class="row my-animated-row"> <div class="col-sm-12 col-md-6 col-md-push-3"> <div class="image-container image-container--empty animated fadeInUpStart start-2"> <div class="video-container video-container--large"> <iframe src="http://player.vimeo.com/video/18776121?title=0&byline=0&portrait=0" width="100%" height="100%" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> </div> </div> </div><!-- end col --> <div class="col-sm-6 col-md-3 col-md-pull-6"> <ul class="list list--bordered list--top-line animated fadeInUpStart start-1"> <li>Etiam augue sem, pellentesque </li> <li>Duis nec neque posuere, gravida</li> <li>Cras felis nunc, tempus ut</li> <li>Ut tincidunt varius pellentesque. Aenean laoreet nibh et nulla </li> <li>Donec imperdiet posuere dolor, at fringilla augue</li> </ul> </div><!-- end col --> <div class="col-sm-6 col-md-3"> <ul class="list list--bordered list--top-line animated fadeInUpStart start-3"> <li>Etiam augue sem, pellentesque </li> <li>Duis nec neque posuere, gravida</li> <li>Cras felis nunc, tempus ut</li> <li>Ut tincidunt varius pellentesque. Aenean laoreet nibh et nulla </li> <li>Donec imperdiet posuere dolor, at fringilla augue</li> </ul> </div><!-- end col --> </div><!-- end row -->
VARNISH+ Redis+CDN將網站飛起來