Skip to content
Popup Example

Earn From News Kiosk

Oppo Find N5 Leaked Images Hint at Thinner Design, Redesigned Triple Camera Layout

January 16, 2025
Oppo Find N5 Leaked Images Hint at Thinner Design, Redesigned Triple Camera Layout

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!
Oppo Find N5 Leaked Images Hint at Thinner Design, Redesigned Triple Camera Layout

Oppo Find N3 — the company’s book-style foldable — was last updated in 2023, and it arrived as the OnePlus Open in global markets, including India. At launch, the phone raised the bar for foldable devices by offering a higher resolution display and a capable set of cameras, all encapsulated in a unique design. With no successor launched in 2024, the OnePlus Open has aged gracefully, while simultaneously falling behind competing devices like the Vivo X Fold 3 Pro and Google Pixel 9 Pro, both of which were launched in India. After Oppo Chief Product Officer Pete Lau shared our first glimpse of Oppo’s Find N5 (comparing its thickness to a pencil), we now have several live images of the device revealing more details about the Find N5’s (or the OnePlus Open 2’s) new design. After the teaser, multiple images have started to surface on X (formerly Twitter). A tipster (@RODENT950) shared three images of a foldable that appears very similar to the Oppo Find N3. The user also claims that there’s no confirmation that this device would also be launched as the OnePlus Open 2.Oppo Find N5 thinness and camera layout. One of the leaked images shows the bottom of the phone when folded, revealing the visually thin halves of the phone folded with a compact hinge at the top. The second image reveals the same phone in a case that hides the design of the phone during the testing phase. The volume and power buttons and the location of the USB-C port are visible in this image, and they appear to be in the same position as on the Oppo Find N3.The position of the three cameras appears to have been changed. The left-aligned triangular setting (in a circle) from the current model has been shuffled into a squarish layout, with the periscope telephoto camera placed in the top-left corner. Another detail that has changed is the placement of the LED flash, which has been moved inside the camera module instead of being placed on the outside closer to the corner, like the OnePlus Open.The third image is a bit strange as it does not align. with the first two. It shows the placement of the USB-C port, revealing how thin the new device is. But the image is missing the speaker grille. It is also worth considering that the third photo could belong to another prototype device.The first Find N vs Find N5It’s hard to believe that in just three years, OPPO managed to cut the thickness in (almost) half.In fact, the *unfolded * Find N is almost as thick as the *folded* Find N5.Thickness when folded: Find N: 15.9 mm Find N5: 9.2 mm pic.twitter.com/Y5nuQHqIB7— Alvin (@sondesix) January 15, 2025On the other hand, another leaked image by tipster Alvin (@sondesix) tells about the phone’s thickness. He compares the thickness of the first Oppo Find N to the upcoming model. The Oppo Find N (which was a compact book-style foldable) was a thick device in reality, with an overall thickness of 15.9mm. The new model, according to the source, is said to be 9.2mm thick when folded. In comparison, the OnePlus Open we tested measured 11.7mm when folded. Google’s Pixel 9 Pro Fold, the slimmest foldable available in India, measures 10.5mm when folded.As long as Huawei does not launch its 9.9mm thin Mate X6 globally, it’s safe to say that Oppo can officially hold the “thinnest foldable” title at 9.2mm this year. Of course, the thinner the device, the more structurally sound it needs to be. If these claims are accurate, it will be interesting to know how Oppo achieved this figure when the device is revealed in the coming months.

Credit-Read More

News kiosk Latest Posts

// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts

// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);

// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);

// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;

// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `

${description} Read more

`;

// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}

// Call the function to fetch and display the latest posts
fetchLatestPosts();