معرفی شرکت ها


django-textflow-0.1.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A simple Django app to animate texts.
ویژگی مقدار
سیستم عامل -
نام فایل django-textflow-0.1.3
نام django-textflow
نسخه کتابخانه 0.1.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Michael Jünger
ایمیل نویسنده michael@xn--jnger-kva.name
آدرس صفحه اصلی https://github.com/mhaze4/jquery-textflow/
آدرس اینترنتی https://pypi.org/project/django-textflow/
مجوز MIT License
======== Textflow ======== Textflow is a simple Django app to animate texts. Texts slide randomly from the right to the left or reverse after the page is loaded. 1. Open the settings.py file, find the INSTALLED_APPS section and enable the app. INSTALLED_APPS = ( ... 'textflow' ) 2. Now create the database model. python manage.py migrate 3. Start the development server and visit http://127.0.0.1:8000/admin/ to create a few FlowObjects (you'll need the Admin app enabled). 4. pen your views.py file and import the FlowObject model. from textflow.models import FlowObject 5. Go to the view and pass the texts to the view by simply call the serialize method. def your_view(request): return render(request, 'template.html', { 'texts': FlowObject.serialize(), }) 6. Then open your template.html file and add the the following two lines at the top. {% load staticfiles %} {% load textflow %} 7. Add a link to the css file in your <head>: <link rel="stylesheet" type="text/css" href="{% static 'stylesheets/textflow.min.css' %}"/> 8. Then, before the closing <body> tag add: <script type="text/javascript" src="{% static 'javascripts/jquery.textflow.min.js' %}"></script> 9. Now call the textflow tag within the <body> tag where you want to show the texts: {% textflow texts %} 10. In your javascript file then add the initializing code $(document).ready(function() { $(element).textFlow(); }); 11. Start your server and visit http://127.0.0.1:8000/your_view/ and you should see the texts 12. You can add multilingual texts by installing the django-modeltranslation app. Please refer to the official Django documentation for more information about translation. https://docs.djangoproject.com/el/1.10/topics/i18n/translation/ Also refer to the official documentation of django-modeltranslation http://django-modeltranslation.readthedocs.io/en/latest/installation.html pip install django-modeltranslation 13. Enable the app in settings.py: INSTALLED_APPS = ( ... 'modeltranslation', 'textflow', ) 14. Update your models: python manage.py migrate 15. Settings Option | Type | Default | Description ------ | ---- | ------- | ----------- width | string/int: Any valid css unit | 100% | Sets the width in relation of the parent node height | string/int: Any valid css unit | 200px | Sets the height top | string/int: Any valid css unit | 0 | Sets the top position within the parent node left | string/int: Any valid css unit | 0 | Sets the left position within the parent node maxTexts | int | 15 | Sets the maximum amount of texts that are simultaneously shown marginTop | int | 25 | The space in pixel between the top border and the text marginBottom | int | 0 | The space in pixel between the bottom border and the text texts | array | ['Add', ... 'here'] | The texts that are shown, ignored when using data-texts attribute color | string: Any valid css unit | #000 | The text color background | string: Any valid css unit | transparent | The background color of the canvas (This is actually not needed because the background of the textflow div can be set in css. However it might happen that this could be useful for some reason so it is there... :) font | string | sans-serif | The font family of the texts 16. Methods Methods are called on textflow instances: 16.1 Get the instance var textflow = $('.your-element').textFlow({options...}); 16.2 Stop textflow textflow.stopTextFlow(); 16.3 Start textflow textflow.startTextFlow(); Method | Argument | Description ------ | -------- | ----------- startTextFlow | options : None | Start textflow if not active stopTextFlow | options : None | Stop textflow if active 17. Dependencies jQuery 1.3 Django 1.8 **For multilingual support (Django only)** django-modeltranslation 18. License Copyright (c) 2014 Michael Jünger Licensed under the MIT license.


نحوه نصب


نصب پکیج whl django-textflow-0.1.3:

    pip install django-textflow-0.1.3.whl


نصب پکیج tar.gz django-textflow-0.1.3:

    pip install django-textflow-0.1.3.tar.gz