Skip to main content

CSS3: Have a block display with 2 text lines top-right and buttom-right with a link-text in the middle

CSS: Mix block display with html/css text ansd styles. Extending dropdown menu with update date and site count in block style. Cool menu.

Hi guys,

I found a cool menue display with CSS, JS and Html that look like this:

drop about settings Test 1 Test 2 Test 3 Test 4 help more deeper deep 1 deep 2 deep 3 test no drop
var count = 1
setTimeout(demo, 500)
setTimeout(demo, 700)
setTimeout(demo, 900)
setTimeout(reset, 2000)

setTimeout(demo, 2500)
setTimeout(demo, 2750)
setTimeout(demo, 3050)


var mousein = false
function demo() {
   if(mousein) return
   document.getElementById('demo' + count++)
      .classList.toggle('hover')
   
}

function demo2() {
   if(mousein) return
   document.getElementById('demo2')
      .classList.toggle('hover')
}

function reset() {
   count = 1
   var hovers = document.querySelectorAll('.hover')
   for(var i = 0; i < hovers.length; i++ ) {
      hovers[i].classList.remove('hover')
   }
}

document.addEventListener('mouseover', function() {
   mousein = true
   reset()
})


html, body{ padding:0px; margin:0px; background:#ffffff font-style: Verdana; width:100vw;

} body * { margin:0; padding:0; }

HTML Nav Styles */ nav menuitem { position:relative; display:block; opacity:0; cursor:pointer;

}

nav menuitem > menu { position: absolute; pointer-events:none;

} nav > menu { display:flex; }

nav > menu > menuitem { pointer-events: all; opacity:1; } menu menuitem a { white-space:nowrap; display:block; }

menuitem:hover > menu { pointer-events:initial;

} menuitem:hover > menu > menuitem, menu:hover > menuitem{ opacity:1; } nav > menu > menuitem menuitem menu { transform:translateX(100%); top:0; right:0; } User Styles Below Not Required */

place in browser win */ nav { margin-top: 20px; margin-left: 20px; }

nav a {

background:#f0f8ff; color:blue; min-width:190px; transition: background 0.5s, color 0.5s, transform 0.5s; margin:0px 6px 6px 0px; padding:20px 40px; box-sizing:border-box; border-radius:3px; box-shadow: 0px 2px 4px rgba(100, 100, 100, 0.5); position:relative;

}

nav a:hover:before { content: ''; top:0;left:0; position:absolute; background:rgba(100, 100, 100, 0.2); width:100%; height:100%; }

nav > menu > menuitem > a + menu:after{ content: ''; position:absolute; border:10px solid transparent; border-top: 10px solid blue; left:12px; top: -40px;
} nav menuitem > menu > menuitem > a + menu:after{ content: ''; position:absolute; border:10px solid transparent; border-left: 10px solid blue; top: 20px; left:-180px; transition: opacity 0.6, transform 0s; }

nav > menu > menuitem > menu > menuitem{ transition: transform 0.6s, opacity 0.6s; transform:translateY(150%); opacity:0; } nav > menu > menuitem:hover > menu > menuitem, nav > menu > menuitem.hover > menu > menuitem{ transform:translateY(0%); opacity: 1; }

menuitem > menu > menuitem > menu > menuitem{ transition: transform 0.6s, opacity 0.6s; transform:translateX(195px) translateY(0%); opacity: 0;

menuitem > menu > menuitem:hover > menu > menuitem,
menuitem > menu > menuitem.hover > menu > menuitem{
transform:translateX(0) translateY(0%); opacity: 1;

I try to extend the code, but break my fingers on it for days.

The block display of every bock of every menue, menuitem looks like this:

/some padding space /link with link-text middle with some padding /some padding space

I want to extend the code by two things. First I want that ever block link on hover has now 3 lines look like this:

/on valign top-right in different font-style (size, font, color ..) Last Update: 2023.02.19 - in one line, no link /the link line displayed as Block /on valign bottom-right in different font-styles (size, font, color ..) Current Sites: 15 - in one line, no link

Second I want have an inactive class in CSS like the win app deactive display gray back in gray text color that displays the menuitem in that color (text and backgroubd), but deactivate further droping menues.

Due lack of progress I would like ask you, if you have any ideas. TY very much in advance.

Via Active questions tagged javascript - Stack Overflow https://ift.tt/1rvRLgp

Comments

Popular posts from this blog

Where and how is this Laravel kernel constructor called? [closed]

Where and how is this Laravel kernel constructor called? public fucntion __construct(Application $app, $Router $roouter) { } I have read the documentation and some online tutorial but I can find any clear explanation. I am learning Laravel and I am wondering where does this kernel constructor receives its arguments from. "POSTMOTERM" CLARIFICATION: Here is more clarity.I have checked the boostrap/app.php and it is only used for boostrapping the interfaces into the container class. What is not clear to me is where and how the Kernel class is instatiated and the arguments passed to the object calling the constructor.Something similar to; obj = new kernel(arg1,arg2) or, is the framework using some magic functions somewhere? Special gratitude to those who burn their eyeballs and brain cells on this trivia before it goes into a full blown menopause alias "MARKED AS DUPLICATE". To some of the itchy-finger keyboard warriors, a.k.a The mods,because I believe in th...

Why is my reports service not connecting?

I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console...

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype