Jump to content
php.lv forumi
  • 0

Bilde seko a href'am


Question

Posted

Nezināju kā labāk paskaidrot tāpēc vnk izveidoju bildi.

irz8cabv5o9tt7mrgvjv.png

 

Ir tā, ka tiek izveidoti a linki ar kkādu id, klasi vai alt tekstu, nav svarīgi. Un ir nepieciešams, lai bildes ar tādu pašu tekstu sāktos vienā līmenī ar šo a tagu.

Kā to varētu vislabāk panākt?

Biju domājis, ka bildes ir ar absolūtu pozīciju, bet man nesanāk no linkiem dabūt offsetu (cik teiksim no lapas augšas ir)

5 answers to this question

Recommended Posts

  • 0
Posted (edited)

Kopējos divus nemēģināji?

 

<style>
 .main {
   float: left;
   clear: both;
 }
 .tag {
   float: left;
   clear: both;
   width: 500px;
 }
 .text {
   float: left;
   width: 400px;
 }
 .image{
   float: right;
   width: 100px;}
</style>

 

<div class="main">

<div class="tag">
 <div class="text"></div>
 <div class="image"></div>
</div>

<div class="tag">
 <div class="text"></div>
 <div class="image"></div>
</div>

<div class="tag">
 <div class="text"></div>
 <div class="image"></div>
</div>

</div>

 

PS: Kods ir aatri uzrakstiits, nav testeets ;)

Edited by aaxc
  • 0
Posted

js failus protams, ka varu mainīt.

Ideja bija tāda, ka es kaut kā iegūstu a taga pozīciju un bildei vnk būs position:absolute ar margin-top[a-taga-pozīcja], bet šādi:

jQuery('.view-id-sablons3 .views-field-field-sablons3-satura-bildes img').each(function() {
 var alt = jQuery(this).attr('alt');
 // get text position
 var text = jQuery(this).parents('.views-row').find('.views-field-body a').attr('id',alt);
 console.log(text);
 var text_top = text.offset();
 console.log(text_top);

});

man offset atmet 0;

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...