Q1)頁面加載是否可以用Jquery檢查圖像的文件名,然後設置CSS以將其放置在頁面上?點擊隱藏YouTube視頻
Q2)什麼是管理最簡單的方法,用戶將不會被嵌入div.icon
我有這將是在產品說明中的播放按鈕圖標內的iframe代碼電子商務網站。當用戶點擊播放時,它會在product-image div框內正確顯示YouTube視頻。該圖標將位於圖像導航圖標旁邊,以便用戶在瀏覽圖片時可以選擇查看視頻。
它似乎在這裏工作很好是我的代碼:
HTML:
<div class="container">
<div class="product-image"><img src=
"http://www.skriftlig.com/konfliktmegling/wp-content/uploads/2010/02/Photoxpress_2658886-480x220.jpg"
alt=
"http://www.skriftlig.com/konfliktmegling/wp-content/uploads/2010/02/Photoxpress_2658886-480x220.jpg" /></div>
<div class="image-nav"></div>
<div class="icon">
<iframe width="480" height="220" src=
"http://www.youtube-nocookie.com/embed/jvTv_oatLA0?rel=0" frameborder="0"
allowfullscreen=""></iframe>
</div>
</div>
CSS:
div.container
{
margin:10px 10px auto;
border:1px solid orange;
}
div.product-image
{
height:220px;
width:480px;
border:1px solid red;
margin:30px;
}
div.image-nav
{
border:1px solid black;
width:500px;
height:100px;
margin:30px;
}
div.icon
{
background-image: url("http://i46.tinypic.com/zmmbo8.png");
background-repeat: no-repeat;
height: 50px;
left: 540px;
position: relative;
top: -104px;
width: 50px;
cursor:pointer;
}
div.icon iframe
{
display:none;
position:relative;
top:30px;
}
div.product-image iframe
{
position: absolute;
top: 42px;
left:42px;
}
JQ:
var $video=$('div.icon iframe');
var $productImage=$('.product-image');
var $icon=$('.icon');
$icon.on('click',function()
{
$('.product-image').append($video);
});
的jsfiddle: http://jsfiddle.net/t7qMF/2/
這爲** **第一季度,根據其路徑或圖像名稱,像這樣設置圖像的圖像風格:'$('img [src =「圖像路徑」]').css(some_css_property,「value」);'。 沒有你在Q2。 –
Q2-不知道HTML的人如何能夠將div粘貼iframe代碼?我正在尋找這個障礙的解決方案。 –