JQuery+CSS實現(xiàn)圖片上放置按鈕的方法
本文實例講述了JQuery+CSS實現(xiàn)圖片上放置按鈕的方法。分享給大家供大家參考。具體分析如下:
position:relative日常應(yīng)用的時候一般是設(shè)置給position:absolute;的父層的,
父層position:relative; 子層position:absolute;的話, 就是依照父層的邊界進(jìn)行定位的,
不然position:absolute 會逐層向上尋找設(shè)置了position:relative的元素邊界, 直到body元素..
第一種寫法(連同CSS一起追加進(jìn)去)
var freeOne=""; freeOne=$(".freePreviewOne").attr("data-url"); if(freeOne==null){ //沒有免費(fèi)視頻 }else{ $("#coursePicture").append("<a class='hide-650 fade5' "+ "style='top:94px;left:150px;position:absolute;z-index:100; " + " width: 180px;height: 60px;border: 2px solid white;" + "display: block;color: white;text-decoration: none;" + "letter-spacing: 1px;font-size: 16px;line-height: 20px;" + "text-align:center;padding-top:18px;" + "background-color: rgba(0, 0, 0, 0.44);" + "-webkit-backface-visibility: hidden;-webkit-transition: all .3s ease-in-out;" + "-moz-transition: all .3s ease-in-out;-ms-transition: all .3s ease-in-out;" + "-o-transition: all .3s ease-in-out;" + "border-radius: 10px;'"+ "href='#modal' data-toggle='modal' "+ "data-url='"+freeOne+"'> "+ "<span class='contactus' style='font-size:26px;'>試 看</span> <span class='glyphicon glyphicon-play' style='font-size:20px;top:0;bottom:2px;'></span> </a>" ); }
頁面:
<div class="es-row-wrap container-gap course-cover"> <div class="row row-5-7 course-cover-heading"> <div id="coursePicture" class="col-sm-5 picture hidden-xs" style="position: relative;"> <#if course.coverImage?has_content> <img src="${course.coverImage}" class="img-responsive" width="436px" height="245px" /> <#else> <img src="/resources/assets/img/default/course-large.png" class="img-responsive" /> </#if> </div> </div> </div>
第二種寫法:
//在課程圖片上放置按鈕 /* <a class="button hide-650 fade5" href="#modal" data-toggle="modal" data-url="/course/hyjgz2np/lesson/preview?lectureId=hyjgz2np0.49618492345325650.04212287697009742"> <span class="contactus"><strong>試看</strong></span> </a> */ //$("#coursePicture").append("<a class='btn btn-sm btn-info' href='#' style='top:120px;left:180px;position:absolute;z-index:100;'>試看</a>"); var freeOne=""; freeOne=$(".freePreviewOne").attr("data-url"); if(freeOne==null){ //沒有免費(fèi)視頻 }else{ $("#coursePicture").append("<a class='freePreviewPicture hide-650 fade5' "+ "href='#modal' data-toggle='modal' "+ "data-url='"+freeOne+"'> "+ "<span class='contactus' style='font-size:26px;'>試 看</span> <span class='glyphicon glyphicon-play' style='font-size:20px;top:0;bottom:2px;'></span> </a>" ); }
頁面:
<style> .freePreviewPicture{ top:94px; left:150px; position:absolute; z-index:100; width: 180px; height: 60px; border: 2px solid white; display: block; color: white;text-decoration: none; letter-spacing: 1px;font-size: 16px; line-height: 20px; text-align:center;padding-top:18px; background-color: rgba(0, 0, 0, 0.44); -webkit-backface-visibility: hidden; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; border-radius: 10px; } </style> <div class="es-row-wrap container-gap course-cover"> <div class="row row-5-7 course-cover-heading"> <div id="coursePicture" class="col-sm-5 picture hidden-xs" style="position: relative;"> <#if course.coverImage?has_content> <img src="${course.coverImage}" class="img-responsive" width="436px" height="245px" /> <#else> <img src="/resources/assets/img/default/course-large.png" class="img-responsive" /> </#if> </div> </div> </div>
運(yùn)行效果圖如下:
希望本文所述對大家的jQuery程序設(shè)計有所幫助。
相關(guān)文章
jquery獲取所有選中的checkbox實現(xiàn)代碼
下面小編就為大家?guī)硪黄猨query獲取所有選中的checkbox實現(xiàn)代碼。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-05-05Javascript中封裝window.open解決不兼容問題
window.open不兼容,其實不是, 因為不能直接執(zhí)行, 必須通過用戶手動觸發(fā)才行,下面有個實例,大家可以看看2014-09-09JQuery的ajax基礎(chǔ)上的超強(qiáng)GridView展示
前面有個例子是使用jQuery的datatable插件來實現(xiàn)的能夠展開個詳細(xì)信息表的樣子。事實上.net的數(shù)據(jù)展示模式很好,如果配上jQuery的那些效果和AJAX功能是相當(dāng)?shù)貌诲e。2009-09-09jQuery+ajax實現(xiàn)文章點(diǎn)贊功能的方法
這篇文章主要介紹了jQuery+ajax實現(xiàn)文章點(diǎn)贊功能的方法,涉及jQuery基于ajax無刷新post提交實現(xiàn)點(diǎn)贊功能的具體步驟與相關(guān)技巧,需要的朋友可以參考下2015-12-12jquery UI Datepicker時間控件的使用方法(基礎(chǔ)版)
這篇文章主要介紹了jquery ui datepicker時間控件的使用方法,需要的朋友可以參考下2015-11-11