Coder Social home page Coder Social logo

graficos_vectoriales's Introduction

graficos_vectoriales

Un pequeño repositorio para poder documentar todo lo aprendido acerca de las animaciones en javascript con svg

#sitios de interes para leer

Web de Sara Soueidan

Web de CSS Tricks (Chris Coyier)

Compendio de artículos de SVG en CSS Tricks

Libro de Chris Coyier sobre SVG

Web de Val Head

Web de Rachel Nabors

Portafolio de Chris Gannon

Portafolio de Dan Klammer

Web de Jorge Aznar

Libro sobre SVG de Jorge Aznar

Libro online sobre SVG (SVG Pocket Guide)

Contenidos sobre SVG de Mozilla Developer Network

Etiquetas y aributos básicos

//Por de fecto la etiqueta svg tiene un widht y un height, siempre hay que ponerle por css una
<svg width="600" height="400">
    //Etiquetas
    //Etiqueta rectangulo
    <rect x="50" y="100"
        width="200" height="80" fill="blue" />
    
    // Etiqueta circulo
    <circle cx="50" cy="100" r="100" fill="yellow" />

     // Etiqueta ellipce
    <ellipce cx="50" cy="100" rx="50" ry="100" fill="yellow" />
</svg>

Estilos en svg

//
Propiedades como:
**stroke** : Color del borde
**stroke-width** : grueso del borde
**stroke-linejoin** 
//esto tambien funciona con estilos en css

Etiqueta de línea polilinea y poligono

<------------------------>

Foobar is a Python library for dealing with word pluralization.

Installation

Use the package manager pip to install foobar.

pip install foobar

Usage

import foobar

foobar.pluralize('word') # returns 'words'
foobar.pluralize('goose') # returns 'geese'
foobar.singularize('phenomena') # returns 'phenomenon'

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

graficos_vectoriales's People

Contributors

andreslarrotta avatar

Watchers

James Cloos 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.