Jssor slider editor code availability - jssor

Where can I find code for JSSOR slider maker/editor found at http://jssor.com/demos/new.slider/=edit
Is this code open source?

JSSOR is not open source - if you want to build slideshow for your website I suggest you Slider Maker (I'm the author).
It's a jQuery Slideshow Maker with admin panel.
You can make slideshows without coding anything, there's nothing to install and no database. Slider Maker is ready to use on any PHP sever.
Main features :
Very simple to use
Animated text layers
Titles, captions, links
Multilanguage (UI & slideshows text content)
Live preview
Sizing & other options available
Ken Burns effect
3 lines of code to copy/paste to publish your slideshow
Awesome customer support
Admin panel Demo available at https://www.slider-maker.com/slidermaker/admin/login.php
Photo slideshow templates here : https://www.slider-maker.com/slidermaker/demo-files/

Related

Rich Text component in AEM 6.3 touch ui

I knew about xtype richtext for classic ui.
I am working more on touch ui these days and would like to have a rich text component in cq:dialog touch dialog.
Could anyone point me to an example with explanation about the rich text component in aem 6.3 touch ui?
I was looking at the example I do not understand rtePlugins node in _cq_editConfig.xml and I assume basic richtext functionality is provided by _cq_dialog content.xml
What is the different between example2
and example
Thanks.
The rtePlugins node lists configurations for enabled plugins in the RTE. You can use either examples you have in your post to achieve the rich text functionality you are after.
If you are interested in a different form of RTE, checkout this CKEditor widget I built a while back: https://github.com/ahmed-musallam/aem-ckeditor-widget

AEM page with rich text and image

I am using AEM 6.0 and want authors to create page using a template having
Page headline
Page sub headline
Page rich text
An image
Page rich text
Similar page - Page with image & RTE
I am planning to use AEM RTE for rich text and as RTE does not provide any option to inset image, i can do one of these
Upgrade RTE to embed image but it will have issues with responsiveness
Create page with multiple RTE and image components to render above output.
Does anyone know best way to achieve this?
For a fixed layout with responsive capabilities you are better off using templates just for simplicity. By fixed layout I am assuming your page will have fixed content location for images and text (guessing from your template details)
Modifying RTE for responsive image insertion on an arbitrary location will not render a good HTML unless you override a lot of RTE functionality. This will be a pain and counter-productive for the use case.
A mid-way alternative is to make a custom image with text (text and image control) where you allow the user to enter text and select and image separately and then provide additional layount options (image position) and responsive customisation.
One more flexible option is to use acs-commons grid layout control to use different text and image controls while letting a grid based css framework (e.g. bootstrap) take care of responsive aspects of the site.
Hope these ideas help you.

Content Slideshow Plugin

Does anyone have any suggestions as to what wordpress plugin I can use to create a similar type of slideshow plugin as the ones that are used on Refinery29? Here is a link to an example...
http://www.refinery29.com/rooftop-bars-nyc/slideshow#slide-1
What I like about this particular slideshow/gallery is that the images don't auto-resize to fit into a fixed gallery box, the slides are numbered, there is a full-screen option.
I also like that each slide is a new URL - better click-through rate I would assume.
This is another example that I like as well...
http://www.wellandgoodnyc.com/2013/06/03/7-stunning-summer-yoga-escapes/
If anyone can provide any suggestions (free or premium plugins), I would be forever grateful!
Thank you!
jquery carousel lite is easy to implement and adapt to your needs;
http://www.gmarwaha.com/jquery/jcarousellite/
for more heavyweight stuff you could use jquery carousel
http://sorgalla.com/projects/jcarousel/

Allowing a user to resize a GWT TextArea using "gripper bars"

I am currently trying to replicate the functionality of the Sticky application (fourth example under "samples") in my GWT application, specifically NoteView (see the class NoteView in SurfaceView.java in my personal repo or download Google App Engine's SDK, where you'll find it in appengine-java-sdk-1.5.1/demos/sticky).
However, as hard as I try, I just cannot find the place where Google put in the gripper bars on the bottom right hand corner of every note, and where their code allowed the user to resize the note. grepping for "resize" and "resizable" in their sticky dir was not fruitful, and the CSS "resize" functionality was not used either. Also, GWT Textareas are not automatically resizable in the way that these notes in GWT are, and I don't know how to enable this or set it up.
I'm sorry but it really just is a textarea, and your browser does the rest (most browsers make textareas resizable nowadays).
Using Firebug or a similar developer tool, can you tell which differences are there between the Sticky sample and what your code does?
I figured it out -- it was old crud css left over from a gxt implementation. As soon as I removed the css file, the textarea automatically had gripper bars.

How to open a RCP/Help Window from a Html hyperlink in Eclipse Plug-in

Suppose I have a html opened in a Browser. Now in that HTML file , I've a hyperlink and On clicking on that hyperlink, I want to open the Eclipse Help Window.
Same as Like
Eclipse>Welcome>What's New>Plug-in
Development Environment
I know the above is using an intro extension, but I am using a view to display the html. Now please show me a way to achieve the target.
The welcome screen and a lot of other places where hyperlinks appear in Eclipse UI aren't implemented using Browser widget, but rather using the FormText widget. The FormText widget supports limited markup, including hyperlink rendering. You control behavior of the hyperlink.
This article covers the use of FormText control:
http://www.eclipse.org/articles/Article-Forms/article.html
It may be possible to achieve what you are after using an actual Browser control, but if your scenario doesn't call for tricky formats, it will definitely be easier using FormText.