photo carousel viewer in angular.js - javascript

I am interested in building or using an open source widget to display photos on a website, using angular.js. Searching Google for "Angular.js photo carousel" or "angular.js photo viewer" returns only a couple of examples.
Are there a lot of angular.js photo widgets siloed somewhere I don't know about, or is this the sort of thing I just need to write rom scratch?

Angular bootstrap has a carousel: http://angular-ui.github.io/bootstrap/
(but I image you already found that)
Otherwise it would probably be pretty easy to write a directive to setup a jquery plugin that you like.
You might try searching for "image/photo slider".

I like the AngularJS Touch Carousel devices from revolunet: https://github.com/revolunet/angular-carousel
I use it for example here: http://www.nautischer-verein-cuxhaven.de

Related

Angular page alike script

Im looking for a Angular page script, that could do something like this on the drawing.
I need a goto page button and prev/next buttons.
The page should contain a page starting with a div tag and contain normal html and angular tags.
I have tried out some Carousels, but they are not build for this purpose.
Anyone with a good link og code exampel?
Im using Bootstrap, HTML5 and AngularJS, and I want to keep it to this.
Anyone else with a suggestion?
AngularStrap dosent support carousel, and Im using AngularStrap in other parts of my code. When I using ui.bootstrap it fails when using ui-bootstrap-tpls-0.12.0.min, and AngularStrap uses of different versions of ui-bootstrap-tpls.

How can I use Javascript to play media on clicking an object?

I apologize for the basic question but I am new to programming and I cannot find the answer to my question in the tutorials I have. I have developed a HTML/CSS page for a project due in two days. I would like users to click an object on the page to access a presentation (which will play full screen). At the end of the presentation the user should be returned to my HTML page.
Can this be done using Javascript with HTML? If so, how?
Will I need to convert the presentations into mp4s?
Thanks, Amit.
You can do 2 things,
1.- you can convert the pptx to a mp4 an playit in fullscreen or
2.- you can use a presentation js framework to help you with that (you will not use a fullscreen)
http://lab.hakim.se/reveal-js/#/13 here is the link to a presentation js framework =)
(this is the first one i click in google results but i guess you can get anothers, there are few of it)
I can not gess your code, but I think, what you are looking for is here:
http://jplayer.org/latest/developer-guide/#jPlayer-event-type
http://jplayer.org/

How to build a widget to embed in third-party websites using AngularJs?

I would like to create a angularjs widget that can be embedded in third-party websites with minimal code such as
<script src=mywidget.js type=...></script>
<div id="mywidgetContainer"></div>
or similar.
I found some resources such as this article for developing a widget using jquery http://alexmarandon.com/articles/web_widget_jquery/.
How would it be done using Angularjs? In what clever ways can angular features such as directives/views etc. be harnessed to this purpose? What are the gotcha's if any? Your thoughts/suggestions/opinions/experiences, please.
You should also keep in mind the possibility that the 3rd party website also uses angular,
and potentially a different version.
Check Multiple versions of AngularJS in one page
This is what seems to have worked for me. In the script I set the innerHTML property of the Container div to the angular view markup code. The key point is to use angular.$bootstrap to manually bootstrap the app after the page load. I did not see any particular value in creating a directive. A directive would need to be part of the view code that would still need to be assigned to the container using innerHTML.

jQuery Multipage/One-page system

I'd like to know how can I create a system using HTML, CSS and jQuery that simulates a multipage website using a single HTML page. One example of this feature is used in this website.
Is there a plugin to create this effect and transition?
the website link you have given here is actually a single page. There are many plugins to achieve what is happening there. one of them is
reveal.js it also has an online presentation creator present here
other one is impress.js but IE isnt supported

facebook auto-expanding like box

can anyone provide me any ideas about how to import a facebook like box, in my site. I would it to seem like the one in the folowing site "http://www.babyspace.gr/". Does any of the existing javascript frameworks afford such a functionality?
Thank you in advance
It is simple Facebook social plugin called Like Box and you can get it here: http://developers.facebook.com/plugins?footer=1
You can install it on any webpage quite easily - If you follow the instructions on the page linked above.
About the slider - It can be achieved quite easily with jQuery. Put the Like Box on some div and use jQuery animate to show it by click.

Categories

Resources