Jssor Slider: Is there a way to have img thumbnail nav and caption with FX? - slideshow

I have both a Jssor slider with pic thumbnails and a Jssor slider with active captions working but cannot seem to combine them in one slider that has both and works. Is it possible to have both in one slider? What would I add to one or the other to do that? I am not a programmer, just barely familiar with the code enough to adjust it. Thanks for your time and effort!

Related

Responsive srcset images by media query?

Have I misunderstood the img srcset tag if I say that I'd like to specify to the browser what image to show when the screen is max-size: 599px (mobile) and when it's above that?
<img
srcset="
small.jpg 600w,
big.jpg 2000w"
sizes="
(max-width: 599px) 600w,
2000w"
src="big.jpg" alt="Some text" />
This code doesn't behave at all how I'd expect it to. I'd like the browser to show the small image when it's a mobile screen, and show the large one for every other device resolution. Is there no way to do this simply? So confusing.
I've read articles on SitePoint, Smashing Mag, etc, and none of them explains it simply as above. They go into image widths, viewports, ratios, etc. All I need is to specify in a media-query screen resolution style which image to show at which resolution.
Many thanks.

User changing background image

I will do my very best to explain my issue.
I have 30 images in a gallery giving the user the choice to select an image and change the main view controller background image, much like the Apple wallpapers in the settings menu.
My problem is, I don't know how to implement this.
I though image picker was a solution but as the images are stored inside the app, is this the best?
I have a collection view controller displaying 30 images in cells. Click on the cell and it takes you to selected image in a new vc. How do I have a "Select" button from that image (or the other 29 images) vc to the main vc? Each image vc has a storyboard ID.
I haven't attached code because I haven't written any worth sharing. I'm stuck.
Please be kind to me, I'm just learning in this male dominated world.
Merci beaucoup

how to make title in TOCropViewController CocoaPod?

I need to add a title bar named "Crop Image" in this Cocoapod.
Please help me
I'm the developer of TOCropViewController. :)
There's no feature in the library at the moment to display text above the cropping content right now. But it would be fairly trivial to add a UILabel to the view and position it near the top of the view.
The challenge is that you'd then need to account for it when the device is rotated sideways. At the moment, the cropping content will fill the entire height of a horizontal device, so you'd need to override that to account for the text.
It's been a while since I wrote it, but I did include a property in the vertical layout code to add padding to the top of the view controller, so it SHOULD be relatively easy.
I sadly don't have time to add it myself, but I made an issue on the repo and added the pr requested tag. Hopefully someone with more free time than I do can add it. :)

How do I make the Slider Control's slider wider? (using MFC)

I'm wondering how would I adjust the slider to make the width wider then it is?
First image is an image of the current state.
The second image is an image of what I'm looking for..
The slider is a CSlierCtrl and I'm using mfc.
It sounds like you want CSliderCtrl::SetThumbLength().

Owner drawn taskbar thumbnail preview

Is there a way to draw the taskbar thumbnail preview on my own, instead of letting Windows draw it for me?
What I need is a dynamic thumbnail; for example, let's say I want the thumbnail to be a reverse of the "real" thumbnail. Any way to do that?
Yeah you can do with this method: DwmSetIconicLivePreviewBitmap.
Complete example: http://msdn.microsoft.com/en-us/library/ff819048(v=vs.85).aspx