Image Divs around circle with Text hover












0















I am trying to place 6 divs around a circle and put images on each div. Also am trying add hover selector to text pop up.
I have these two things separately but I am not able to merge them into one thing.



This is divs around the circle: https://jsfiddle.net/zwsck7gm/2/



HTML:



<div class="container-fluid">
<div class="circle_container col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-12">
<img class="transparent_square" src="http://i.stack.imgur.com/5Y4F4.jpg" width="2" height="2" />
<div class="central_text text-center">
<h3 id="item_title">Test</h3>
<h5 id="item_description"></h5>
</div>
<div class="moon_container moon1"><a href=""><img class="moon moon1" alt="item1" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

<div class="moon_container moon2"><a href=""><img class="moon moon2" alt="item2" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

<div class="moon_container moon3"><a href=""><img class="moon moon3" alt="item3" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

<div class="moon_container moon4"><a href=""><img class="moon moon4" alt="item4" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

<div class="moon_container moon5"><a href=""><img class="moon moon5" alt="item5" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

<div class="moon_container moon6"><a href=""><img class="moon moon6" alt="item6" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>
</div>




And this is the hover over image:http://jsfiddle.net/ytwL7g81/



HTML:



<div class="">
<div class="col-sm-4 img">
<a href="industries-info.php" target="blank">
<div class="hvrbox">
<img src="https://images.pexels.com/photos/1085695/pexels-photo-1085695.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" alt="Text" class="hvrbox-layer_bottom responsive" width="400px">
<div class="hvrbox-layer_top">
<div class="hvrbox-text">
Hover
<div class="hvrbox-text_mobile">Tap again to go further</div>
</div>
</div>
</div>
</a>
</div>


Can you help me merging these two into one please?










share|improve this question





























    0















    I am trying to place 6 divs around a circle and put images on each div. Also am trying add hover selector to text pop up.
    I have these two things separately but I am not able to merge them into one thing.



    This is divs around the circle: https://jsfiddle.net/zwsck7gm/2/



    HTML:



    <div class="container-fluid">
    <div class="circle_container col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-12">
    <img class="transparent_square" src="http://i.stack.imgur.com/5Y4F4.jpg" width="2" height="2" />
    <div class="central_text text-center">
    <h3 id="item_title">Test</h3>
    <h5 id="item_description"></h5>
    </div>
    <div class="moon_container moon1"><a href=""><img class="moon moon1" alt="item1" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

    <div class="moon_container moon2"><a href=""><img class="moon moon2" alt="item2" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

    <div class="moon_container moon3"><a href=""><img class="moon moon3" alt="item3" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

    <div class="moon_container moon4"><a href=""><img class="moon moon4" alt="item4" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

    <div class="moon_container moon5"><a href=""><img class="moon moon5" alt="item5" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

    <div class="moon_container moon6"><a href=""><img class="moon moon6" alt="item6" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>
    </div>




    And this is the hover over image:http://jsfiddle.net/ytwL7g81/



    HTML:



    <div class="">
    <div class="col-sm-4 img">
    <a href="industries-info.php" target="blank">
    <div class="hvrbox">
    <img src="https://images.pexels.com/photos/1085695/pexels-photo-1085695.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" alt="Text" class="hvrbox-layer_bottom responsive" width="400px">
    <div class="hvrbox-layer_top">
    <div class="hvrbox-text">
    Hover
    <div class="hvrbox-text_mobile">Tap again to go further</div>
    </div>
    </div>
    </div>
    </a>
    </div>


    Can you help me merging these two into one please?










    share|improve this question



























      0












      0








      0








      I am trying to place 6 divs around a circle and put images on each div. Also am trying add hover selector to text pop up.
      I have these two things separately but I am not able to merge them into one thing.



      This is divs around the circle: https://jsfiddle.net/zwsck7gm/2/



      HTML:



      <div class="container-fluid">
      <div class="circle_container col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-12">
      <img class="transparent_square" src="http://i.stack.imgur.com/5Y4F4.jpg" width="2" height="2" />
      <div class="central_text text-center">
      <h3 id="item_title">Test</h3>
      <h5 id="item_description"></h5>
      </div>
      <div class="moon_container moon1"><a href=""><img class="moon moon1" alt="item1" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon2"><a href=""><img class="moon moon2" alt="item2" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon3"><a href=""><img class="moon moon3" alt="item3" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon4"><a href=""><img class="moon moon4" alt="item4" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon5"><a href=""><img class="moon moon5" alt="item5" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon6"><a href=""><img class="moon moon6" alt="item6" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>
      </div>




      And this is the hover over image:http://jsfiddle.net/ytwL7g81/



      HTML:



      <div class="">
      <div class="col-sm-4 img">
      <a href="industries-info.php" target="blank">
      <div class="hvrbox">
      <img src="https://images.pexels.com/photos/1085695/pexels-photo-1085695.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" alt="Text" class="hvrbox-layer_bottom responsive" width="400px">
      <div class="hvrbox-layer_top">
      <div class="hvrbox-text">
      Hover
      <div class="hvrbox-text_mobile">Tap again to go further</div>
      </div>
      </div>
      </div>
      </a>
      </div>


      Can you help me merging these two into one please?










      share|improve this question
















      I am trying to place 6 divs around a circle and put images on each div. Also am trying add hover selector to text pop up.
      I have these two things separately but I am not able to merge them into one thing.



      This is divs around the circle: https://jsfiddle.net/zwsck7gm/2/



      HTML:



      <div class="container-fluid">
      <div class="circle_container col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-12">
      <img class="transparent_square" src="http://i.stack.imgur.com/5Y4F4.jpg" width="2" height="2" />
      <div class="central_text text-center">
      <h3 id="item_title">Test</h3>
      <h5 id="item_description"></h5>
      </div>
      <div class="moon_container moon1"><a href=""><img class="moon moon1" alt="item1" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon2"><a href=""><img class="moon moon2" alt="item2" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon3"><a href=""><img class="moon moon3" alt="item3" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon4"><a href=""><img class="moon moon4" alt="item4" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon5"><a href=""><img class="moon moon5" alt="item5" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>

      <div class="moon_container moon6"><a href=""><img class="moon moon6" alt="item6" src="https://images.pexels.com/photos/754587/pexels-photo-754587.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"></a></div>
      </div>




      And this is the hover over image:http://jsfiddle.net/ytwL7g81/



      HTML:



      <div class="">
      <div class="col-sm-4 img">
      <a href="industries-info.php" target="blank">
      <div class="hvrbox">
      <img src="https://images.pexels.com/photos/1085695/pexels-photo-1085695.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" alt="Text" class="hvrbox-layer_bottom responsive" width="400px">
      <div class="hvrbox-layer_top">
      <div class="hvrbox-text">
      Hover
      <div class="hvrbox-text_mobile">Tap again to go further</div>
      </div>
      </div>
      </div>
      </a>
      </div>


      Can you help me merging these two into one please?







      html css hover circle






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 27 '18 at 19:43









      j08691

      167k20195215




      167k20195215










      asked Nov 27 '18 at 19:42









      newbienznewbienz

      14




      14
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53506984%2fimage-divs-around-circle-with-text-hover%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53506984%2fimage-divs-around-circle-with-text-hover%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Contact image not getting when fetch all contact list from iPhone by CNContact

          count number of partitions of a set with n elements into k subsets

          A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks