2015-10-13 159 views
-1

目標:
在網頁的中間有兩個可見的按鈕,一個在左邊,第二個在右邊。在頁面的左側和右側可見的圖片

問題:
你知道任何可以提供它的jquery嗎?

信息:
*我使用的是引導2.
*本網頁(https://www.softwareag.com/corporate/rc/rc_perma.asp?id=tcm:16-123797)具有使用 「聯繫我們」 的功能。

+0

爲什麼你需要jQuery的只是使用CSS或引導COL-X-6 COL-X-6 – hurricane

+0

這不是一個清晰的問題,實在是太含糊。請說明您需要更清楚的內容,在頁面的哪個位置要按左鍵。如果你提供一個代碼示例,它也會有所幫助。 – TheLimeTrees

+0

它是simplae作爲abc是你的目標? – mohsen

回答

0

查看您提供的示例的源代碼。他們的確切的HTML應該給你你想要的。

<a href="/corporate/contact_us/default.asp" title="Contact form intro" class="contact_fixed"><span>Contact Us</span></a> 

a.contact_fixed { 
    position: fixed; 
    top: 24%; 
    right: 0; 
    width: 40px; 
    height: 155px; 
    display: block; 
    border-radius: 10px 0px 0px 10px; 
    background: #80BD01 url('/images/b/contact_vertical.png') no-repeat center center; 
} 

他們正在使用圖像來模擬旋轉的文本。 display:none;內有span,大概是爲了幫助屏幕閱讀器。

你想要的CSS的主要位是:position:fixed; height:...; width:...; right:0; top:...;http://jsfiddle.net/daveSalomon/Ltzzawfj/