Cara Menyisipkan/Membuat Equation di Google Slide

Image
Tentunya kalian sudah tidak asing lagi dengan Google Slide. Google Slide merupakan layanan online yang disediakan oleh google. Seperti namanya, Google Slide adalah layanan yang digunakan untuk membuat file presentasi dalam bentuk slide. Cara kerjanya mirip dengan MS Power Point. Bedanya di sini hanya cara mengaksesnya. Okey, langsung saja kita masuk ke tutorial "Cara Menyisipkan/Membuat Equation di Google Slide" 1. Kita harus masuk dulu ke layanan Google Slide Pilih template yang akan digunakan. 2. Setelah itu tampilan kita akan seperti gambar di bawah ini Tampilannya sesuai dengan template yang kalian gunakan yaaa 3. Selanjutnya, klik Add-on 4. Klik Hypatia Create Buat kalian yang belum ada  Hypatia Create bisa tambahin dulu dengan cara klik Dapatkan add-on, terus cari aja  Hypatia Create. Lalu ikuti langkah selanjutnya.  5. Kalian bisa milih mau yang Mini editor atau yang Insert/Edit Math. Tapi aku lebih suka yang Insert/Edit Math. Soalnya menunya lebih lengkap. Buat tu...

How to Show and Hide a Element with jQuery

 If you already studied or maybe you are studying javaScript you will know about  jQuery.  jQuery is a programing language to help us to use and apply javaScript in website. One of the uses  jQuery is to show and hide a element. In this opportunity i will show you how to show and hide a picture with  jQuery.

Just Copy and paste the script bellow

<html>

<head>

 <title>Show and hide a element with jQuery</title>

 <script src="jquery-1.7.min.js" type="text/javascript"></script>

 <script>

 //early initiation of use jQuery

 $(document).ready(function(){

  //First, hide the element

        $('.picture').hide();        


  //When the button show is clicked, the picture is showed

        $('.display').click(function(){

   $('.picture').show();

        });


  //When the button hide is clicked, the picture is hided

        $('.hide').click(function(){

   //hide the element

   $('.picture').hide();        

        });

 });

 </script>

</head>

<body>

<input class="show" type="button" value="Show" />

<input class="hide" type="button" value="Hide" />

 <div class="picture">

  <img src="image.png" /> 

 </div>

</body>

</html>


After that, you have to input your picture's source to image.png. Changeimage.png with your picture's source

Good luck


 

Comments

Popular posts from this blog

Tutorial membuat splash screen menggunakan adobe animate cc 2018

Cara Membuat Kalkulator Sederhana Dengan Menggunakan Matlab

Cara Menyisipkan/Membuat Equation di Google Slide