Random Quote Generator - Part 3 | AJAX Tutorial | MySQL Select Statement

Sdílet
Vložit
  • čas přidán 18. 02. 2020
  • ``````````````````````````````````````````````````````````````````````````````````````````````
    ( Website ) clevertechie.com - PHP, JavaScript, Wordpress, CSS, and HTML tutorials in video and text format with cool looking graphics and diagrams.
    ( CZcams Channel ) / clevertechietube
    ( Google Plus ) goo.gl/J71p6f - clever techie video tutorials.
    ( Facebook ) / clevertechie
    ( Twitter ) / theclevertechie
    ``````````````````````````````````````````````````````````````````````````````````````````````
  • Jak na to + styl

Komentáře • 14

  • @kendallshearman6016
    @kendallshearman6016 Před 4 lety +1

    Thank you! Followed all three tutorials and it works like a charm.

  • @DanielePais
    @DanielePais Před 4 lety

    Wow, that's great, I watched all three parts in a gulp. Very well demonstrated.

  • @franco521
    @franco521 Před 3 lety

    Thank you clever techie!

  • @davideboeuccvalbusa9212

    Thank you very much for these 3 tutorials..and for your teaching skills ... Ciao from Italy

  • @Kodeispoetry
    @Kodeispoetry Před 4 lety

    Wonderful tutorial. Voice is also very good. Kudos!

  • @user-bu8mg7uq3s
    @user-bu8mg7uq3s Před rokem

    thank you so much

  • @davidchan2107
    @davidchan2107 Před 4 lety

    Nice job

  • @mdsafikulislam9113
    @mdsafikulislam9113 Před 4 lety

    Thank you so much

  • @Kodeispoetry
    @Kodeispoetry Před 4 lety

    Please provide the CSS if possible?

  • @gouravrudrawar7823
    @gouravrudrawar7823 Před 3 lety

    It's not working for me..

  • @markusolsenkydland9589
    @markusolsenkydland9589 Před 4 lety +1

    Where do you download the code?

    • @jordanwmcdonald
      @jordanwmcdonald Před 4 lety

      Yes, where do you download this code at the 5 minute mark?

    • @Kodeispoetry
      @Kodeispoetry Před 4 lety

      @@jordanwmcdonald I am looking for the same specially HTML/CSS

  • @normanlove222
    @normanlove222 Před 2 lety +1

    body{
    font-family: 'Roboto', sans-serif;
    color: #000;
    }
    #container {
    width: 1500px;
    margin: 50px auto;
    padding: 20px;
    width: 50%;
    max-height: 800px;
    }
    #container h2 {
    text-align: center;
    color: #045;
    }
    #buttonContainer {
    text-align: center;
    }
    #quoteContainer{
    width: 75%;
    background: #fff;
    padding: 10px;
    margin: 0 auto;
    font-size: 1.1rem;
    margin: 2rem auto;
    }
    #quoteAuthor{

    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    font-style: italic;
    }
    #quoteButton {
    background-color: #00bcd4;
    color: #fff;
    font-size: large;
    padding: 0.4rem 2.5rem;
    }
    [type="radio"]:checked + label:after{
    width: 12px;
    height: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;


    }
    [type="radio"]:not(:checked) + Label:after{
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    }
    [type="radio"]:checked + label:after{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);

    }