Skip to main content
Participating Frequently
October 18, 2021
Frage

Can Dreamweaver automatically make an image slide?

  • October 18, 2021
  • 4 Antworten
  • 2217 Ansichten

Hello
I'm from South Korea.
South Korea has a certificate of web design technician.
In this certification test, there is a part where the image slide is completed using JavaScript and css.
If you don't complete the image slide, you're disqualified.
Image slides without JavaScript and css are disqualified.
Example) Image slides using Adobe Flash are disqualified.

In August, I took a practical test for web design technicians at Polytechnic University in Chuncheon, Gangwon-do.
The test result was disqualified.

The reason for disqualification was "JavaScript and css were not used."
And the code for the image slide was automatically created by Dream Weaver, which was a foul.

Of course, I think Dream Weaver is the best editor.
I coded with Bracketts and didn't get help from Dream Weaver.

I can't agree, so I leave a message on this forum for help.

This link is a simple version of the code I submitted on the test.
https://codepen.io/yota1999/pen/JjyYXoK 
It's a question.
1) In your opinion, did Dream Weaver automatically create the code for the link?
2) Is there an automatic image slide function on Dream Weaver?
3) If Dream Weaver automatically created an image slide (including the behaviers function), is there a feature that can distinguish it from hardcoding?

I want fairness.
I will appreciate any of your answers.
Thank you.

    Dieses Thema wurde für Antworten geschlossen.

    4 Antworten

    BenPleysier
    Community Expert
    Community Expert
    October 21, 2021
    quote

    This link is a simple version of the code I submitted on the test.
    https://codepen.io/yota1999/pen/JjyYXoK 
    It's a question.
    1) In your opinion, did Dream Weaver automatically create the code for the link?
    2) Is there an automatic image slide function on Dream Weaver?
    3) If Dream Weaver automatically created an image slide (including the behaviers function), is there a feature that can distinguish it from hardcoding?

    I want fairness.
    I will appreciate any of your answers.
    Thank you.


    By @sa2b

     

    1. Dreameweaver did not automatically create the code shown in the link.

    2. There is an automatic image slider function when using Bootstrap with Drwamweaver

    3.. If Bootstrap had been used to create the slideshow, then the CSS would be included in bootstrap.css and the JavaScript would be included in bootstrap.js. The code that was shown in the link is definately handcoded if indeed Dreamweaver was used. In fact, I will go as far as to say that there is no IDE that I know of that would have created said code automatically.

     

    Others have stated that jQuery is not JavaScript. I see jQuery purely as a JavaScript dialect.

     

    I hope this helps.

    Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
    sa2bAutor
    Participating Frequently
    October 22, 2021

    Thank you so much.
    My curiosity has been solved a lot.
    I'm touched by many other answers, including you.
    Have a good day.

    B i r n o u
    Community Expert
    Community Expert
    October 20, 2021

    Nancy has answered on the Dreamweaver aspect,

     

    to answer your questions..;

    1) I don't think DW create the code

    2) yes, as Nancy demonstrate it to you

    3) generally yes, except if you change the class name, and tag the HTML differently

     

    now in your pencode exemple purely, if I was involved in the test or evaluation jury (as I did here in France), these would have been my comments, but in no way disqualifying, on the contrary, the criticism would have been constructive

    so

    I don't know your degree, nor how long you've been coding, but it's a nice piece of code, and on this aspect there's nothing to say, except that the values are hard coded directly in the algorithm, think of using third party variables.


    I would make three remarks that you should make this code evolve for various reasons:
    - the carousel is not responsive
    - at this stage, it can only contain 3 slides, no more, no less
    - it can't be controlled from the outside (for example with navigation arrows)

    sa2bAutor
    Participating Frequently
    October 22, 2021

    Thank you for your good answer.
    Also, thank you for your additional advice.
    I'll keep trying.
    I went to Paris a few years ago.
    I look forward to going there again.

    Nancy OShea
    Community Expert
    Community Expert
    October 19, 2021

    Your example on CodePen uses the jQuery plugin which is a JavaScript library and JavaScript shortcut.  JQuery is technically NOT pure JavaScript but some people seem to think it is. 😉

     

    I guess the testers don't want you to use jQuery shortcuts.

    They would probably say the same about  Node.js, Vue.js, Bootstrap.js or React.js.

     

    Moral of the story, don't use shortcuts on the test.

     

    Nancy O'Shea— Product User & Community Expert
    BenPleysier
    Community Expert
    Community Expert
    October 21, 2021

    @Nancy OShea wrote:

     

    They would probably say the same about  Node.js, Vue.js, Bootstrap.js or React.js.

     

    Moral of the story, don't use shortcuts on the test.

     


    NodeJS does not belong here. It is not a framework but a runtime environment running on Chrome's V8 JavaScript Engine. NodeJS accepts only vanilla JavaScript. The only differnce between client side and server side JavaScript is the environment in which it operates. As an example, server side JavaScript does not have access to the document object model. Similarly,  client side JavaScript does not have access to the file system.

    Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
    B i r n o u
    Community Expert
    Community Expert
    October 22, 2021

    You may be interested in a YouTube playlist that I have started on NodeJS

    https://www.youtube.com/playlist?list=PLUjqTJN3byC9fUoXFnoNGlYBCBZOJUPca


    well done, very nice, interesting

    Nancy OShea
    Community Expert
    Community Expert
    October 19, 2021

    There are any number of ways to create an image slider or carousel.  Which one you choose depends on your skills as a coder.

     

    Dreamweaver 2021 contains the built-in Bootstrap Carousel which relies on Bootstrap CSS, jQuery JS and Bootstrap JS files.  Start with a Bootstrap starter page.

    Go to Insert > Bootstrap Components > Carousel.  See screenshot and demo below.

    https://www.w3schools.com/bootstrap4/bootstrap_carousel.asp

     

     

    Alternatively you can code manually with plain vanilla JavaScript, HTML and CSS code.  See below for code and demo.

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

     

    Hope that helps.

     

    Nancy O'Shea— Product User & Community Expert
    sa2bAutor
    Participating Frequently
    October 22, 2021

    I really didn't know that Dreamweaver had a built-in bootstrap.