• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

I want to make a small slide show

Community Beginner ,
May 13, 2021 May 13, 2021

Copy link to clipboard

Copied

I want to make a slideshow of 6 to 8 slides to post on my website via Dreamweaver hightlighting my art work. My tech skills are not advanced. What Adobe program is best to use in my case?

Thank you.

TOPICS
How to

Views

1.4K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 13, 2021 May 13, 2021

Hi @Vincent16B6,

The question is do you want to learn something or do you just want fast & easy?

 

The best way to learn is to code manually in DW with HTML, CSS and JavaScript (see the how-to instructions below).

https://www.w3schools.com/howto/howto_js_slideshow.asp

 

If you just want fast & easy, use a widget like this one from Wow Slider (license required for commercial use).

https://wowslider.com/demos.html

 

Hope that helps.

 

Votes

Translate

Translate
LEGEND ,
May 13, 2021 May 13, 2021

Copy link to clipboard

Copied

Adobe Dreamweaver uses the Bootstrap framework which has a carousel slideshow option code snippet that you can insert on your page or you could Google 'Codepen slideshow' which will pull up many options where you can copy the code and paste into any html editor, paid for or free.

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 13, 2021 May 13, 2021

Copy link to clipboard

Copied

Hi @Vincent16B6,

The question is do you want to learn something or do you just want fast & easy?

 

The best way to learn is to code manually in DW with HTML, CSS and JavaScript (see the how-to instructions below).

https://www.w3schools.com/howto/howto_js_slideshow.asp

 

If you just want fast & easy, use a widget like this one from Wow Slider (license required for commercial use).

https://wowslider.com/demos.html

 

Hope that helps.

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 17, 2021 May 17, 2021

Copy link to clipboard

Copied

Thank you so much Nancy.

Working with code is beyond me, so I took the easy route via WOW.

I made the slide show, now I'm working on getting it into Dreamweaver.

We'll see how that goes.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

For me any new project you want to try to move on from jQuery (Despite how much I have loved jQuery over the years) and go more native JS as much as you can as a goal for websites and any web based application solutions something like vue.js and react,

 

With that there are a number of native supporting solutions such as swiper js.

https://swiperjs.com/

 

Swiper JS is not only lighter than most other solutions with the feature set, it has rich options, documentation and if you look at the demo's it can do a lot more than what you think it should.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

quote

For me any new project you want to try to move on from jQuery (Despite how much I have loved jQuery over the years) and go more native JS as much as you can as a goal for websites and any web based application solutions something like vue.js and react,

 

By @Liam Dilley

 

 

I totally agree. I dont think we need jQuery anymore BUT vanilla javascript needs to keep on improving. You can't deny that adding fadeIn(), fadeOut() jQuery functions were super easy as was selecting an element $('.myElement') as opposed to document.querySelector('.myElement'), yes there is a way to shorten 'document.querySelector' but I rarely see any developers using it.

 

The way I see it, is you either hate the extra baggage which libraries bring along or you can live with it, in which case jQuery is still ok to use for those kinds of developers. What I find funny is those developers using other extra baggage workflows and then hate on jQuery, the 'pot calling the kettle black'.

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

@Liam Dilley and @osgood_,

jQuery is ubiquitous.  It won't vanish anytime soon.  The OP said he's not a coder.  So I take that to mean, he's not interested in learning plain vanilla JS, vue.js, react.js or any other framework du jour.  As the legendary Yogi Berra said, "If people don't want to come out to the ball park, nobody's gonna stop 'em."   🙂

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

quote

The OP said he's not a coder.  So I take that to mean, he's not interested in learning plain vanilla JS, vue.js, react.js or any other framework du jour. 

 

You dont have to be a coder to search the internet for simple slideshows created using vanilla javascript.......no-one has to learn anything, apart from copying and pasting. I think as 'professionals' we should be providing advice based on what direction the industry seems to be moving and our own opinions.

 

You can argue that you would continue to use jQuery or Bootstrap, whereas others would frown upon it and suggest something different based on their opinion, of course.

 

Liam and I were providng advice based on our overview and understanding on where things are heading in terms of jQuery v vanilla javascript

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

If you read my first reply, I presented 2 options: 

  #1. copy & paste plain vanilla JS, HTML, CSS, 

  #2. a widget. 

OP chose #2 the path of least resistance. There is nothing more to say.

 

Feel free to start a new discussion about jQuery, plain JS, Vue, React, Node, etc...

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

quote

OP chose #2 the path of least resistance. There is nothing more to say.

 

 

So if I advised someone to use tables for layout because it's the path of least resistance that's ok? Sure sucks that you would consider yourself a 'professional' and not at least recognise that jQuery is something that most forward looking developers are distancing themselves from. Especially it sucks if the OP is not using the jQuery library for doing anything else but run a simple slideshow..........humm. Still I guess I should expect it after-all, it is the DW forum, mostly mickey mouse users now the program has decsended into that space.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

What I do is NOT the issue.  If the OP prefers to use a widget, who are we to question it?  It's not our project and thus not our problem.  There's no point in beating a dead topic to death if the OP is not open to it which is what's happening right now.  'Nuff said!

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 18, 2021 May 18, 2021

Copy link to clipboard

Copied

quote

What I do is NOT the issue.  If the OP prefers to use a widget, who are we to question it?  It's not our project and thus not our problem.  There's no point in beating a dead topic to death if the OP is not open to it which is what's happening right now.  'Nuff said!

 


By @Nancy OShea

 

The way I see it regular forum contributors have a responsibilty to depart information that is current rather than what the OP might or might not be capable of using, even IF the user then decides to ignore the advice provided. Its usually sensible to have 4 tyres attached to your car, a good motor mechanic would advise you do so but if you then choose to ignore that advice that's up to you.

 

Even if the OP doesnt take onboard the advice, someone else who possibly comes across the post may have a better understanding of what they are about to deploy if someone else has responded with their opinions about using a particular workflow that has been suggested.

 

Its not wrong it just allows those with less experience to make a better judgement as to which option they want to follow, occasionally we do have some interested forum users, who want to do things using the best solutions.

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 19, 2021 May 19, 2021

Copy link to clipboard

Copied

So @Vincent16B6 were you able to finalize the integration of your slider from Dreamweaver. Do you still need help

 

Just for information, it is true that WOW is free and offers magnificent realizations. For my part, when necessary, I work with CodeCanyon, because for a few euros, there is a real support from the developers who offer their solutions.

https://codecanyon.net/search/slider

by far a slider that I find particularly successful, slider revolution, but there are also some alternatives

https://codecanyon.net/category/javascript?term=slider%20revolution

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 19, 2021 May 19, 2021

Copy link to clipboard

Copied

LATEST

Ha, Ha, now l can add jQuery to the list.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines