2016-02-21 63 views
0

我想在header.php中插入彈出窗口。 我想要一個帶圖像的彈出式按鈕。 例與屏幕:Popup header.php

https://gyazo.com/fdda47a92f015c54f58cc10088cfcb23

我想上的按鈕,用戶點擊自動「contatta IL DJ」彈出窗口打開。

在header.php中,這是一個代碼:

<a class="tile" style="background-image: url('http://s8.postimg.org/az38crnn5/party_dj_adelaide_icon1.png'); background-position: center 13px; background-repeat: no-repeat;" href="http://www.specialradio1.altervista.org/contattaildj"> 
<span class="tile-title">CONTATTA IL DJ</span></a> 

但我希望有一個彈出,幫幫我好嗎?

回答

0
  1. 創建一個彈出HTML

    <div class='popup_window'> 
         Put Your Content Here 
        </div> 
    
  2. CSS

    .popup_window{ display: none; position: fixed; top: 10%; left:50%; transform:translateX(-50%); } 
    
  3. JS

    $(".tile-title").on("click", function(){ 
        $(".popup_window"). 
        }); 
    
+0

Grazie molto,ma non capisco:1)creo popup con blocco note?鴿子inserisco il文件? nei temi cartella? 2)js,'titolo tegola''De​​vo cambiare con il nome del tasto? – checcot

+0

如果你想在所有的頁面上,添加到footer.php,否則添加到您的相應頁面。 – anurag

+0

我應該在這裏寫什麼內容? 2)代碼彈出HTML我可以在header.php中插入或使用記事本創建新文件? 3)JS我必須改變一些東西? (瓦片標題)我chage與按鈕的名稱? 感謝您的幫助 – checcot