generated from hjess/PythonTemplateProject
Better CSS
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 36s
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 36s
This commit is contained in:
@@ -50,12 +50,11 @@ def slider(options, images):
|
||||
html_content = []
|
||||
html_content.append('<div class="modal-buttons">')
|
||||
for i, val in enumerate(images):
|
||||
if i % 2 == 0:
|
||||
html_content.append(f"""<button onclick="openModal('modal{i}')" class="open"> <img src="{val}" class="thumbnail"></button>""".strip())
|
||||
else:
|
||||
html_content.append(f"""<button onclick="openModal('modal{i}')" class="open_inv"> <img src="{val}" class="thumbnail" ></button>""".strip())
|
||||
|
||||
html_content.append(f"""<div class="modal" id="modal{i}"> <div class="modal-content"> <h2>Modal {i}</h2> <p>This is modal {i}.</p> <img src="{val}" width="80%" height="80%"> <button onclick="closeModal('modal{i}')">Close</button> </div> </div>""")
|
||||
if i % 2 == 0:
|
||||
html_content.append(f"""<button onclick="openModal('modal{i}')" class="open"> <img src="{val}" class="thumbnail"></button>""".strip())
|
||||
else:
|
||||
html_content.append(f"""<button onclick="openModal('modal{i}')" class="open_inv"> <img src="{val}" class="thumbnail" ></button>""".strip())
|
||||
html_content.append(f"""<div class="modal" id="modal{i}"> <div class="modal-content"> <h2>Modal {i}</h2> <p>This is modal {i}.</p> <img src="{val}" width="80%" height="80%"> <button onclick="closeModal('modal{i}')">Close</button><button class="next-btn" onclick="nextModal('modal{i}', 'modal{i+1}')">Next</button></div> </div>""")
|
||||
html_content.append( '</div>' )
|
||||
html = '\n'.join( html_content )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user