Giter Club home page Giter Club logo

tagcloud's Introduction

tagCloud

为Ghost增加标签云支持,需要Ghost版本支持Public API Add TagCloud Support For Ghost, Ghost Public API is required

Demo : https://www.hoyt-tian.com/

Usage

在Ghost的Code injection中添加如下代码

<script src="//cdn.rawgit.com/hoyt-tian/tagCloud/v0.3.0/dist/tagcloud.js"></script> 
 
 
<script>
    var isMobile = (function(){
    return  navigator.userAgent.match(/Android/i)
 || navigator.userAgent.match(/webOS/i)
 || navigator.userAgent.match(/iPhone/i)
 || navigator.userAgent.match(/iPad/i)
 || navigator.userAgent.match(/iPod/i)
 || navigator.userAgent.match(/BlackBerry/i)
 || navigator.userAgent.match(/Windows Phone/i);})();
    
    if(!isMobile){
        fetch(ghost.url.api('tags',{limit:'all'}))
        .then(function(response){
                               return response.json();
                               })
        .then(function(data){
            try{
                 var url = ghost.url.api().match(/^(.+)\/ghost\/.+/)[1];
                data.tags.forEach(function(tag){
                   tag.href = url + '/tag/' + tag.slug;
                });
            	new TagCloud(data.tags, TagCloud.prototype.plugins.ellipse).start();
            }catch(e){
                console.log(e);
            }
        });
    }

</script>

tagcloud's People

Contributors

hoyt-tian avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.